123456789101112131415161718192021 |
- using System.Collections.Generic;
- using MediaBrowser.Common.Configuration;
- using MediaBrowser.Model.Notifications;
- namespace Emby.Notifications
- {
- public class NotificationConfigurationFactory : IConfigurationFactory
- {
- public IEnumerable<ConfigurationStore> GetConfigurations()
- {
- return new ConfigurationStore[]
- {
- new ConfigurationStore
- {
- Key = "notifications",
- ConfigurationType = typeof (NotificationOptions)
- }
- };
- }
- }
- }
|