jellyfin/Emby.Server.Implementations/Notifications/NotificationConfigurationFa...

22 lines
612 B
C#
Raw Normal View History

2014-07-02 14:34:08 -04:00
using MediaBrowser.Common.Configuration;
using MediaBrowser.Model.Notifications;
using System.Collections.Generic;
2016-11-03 03:35:00 -04:00
namespace Emby.Server.Implementations.Notifications
2014-07-02 14:34:08 -04:00
{
public class NotificationConfigurationFactory : IConfigurationFactory
{
public IEnumerable<ConfigurationStore> GetConfigurations()
{
return new List<ConfigurationStore>
{
new ConfigurationStore
{
Key = "notifications",
ConfigurationType = typeof (NotificationOptions)
}
};
}
}
}