jellyfin/Emby.Server.Implementations/Notifications/NotificationConfigurationFactory.cs

22 lines
612 B
C#
Raw Normal View History

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