22 lines
582 B
C#
22 lines
582 B
C#
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)
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|