jellyfin/Emby.Dlna/ConfigurationExtension.cs

30 lines
776 B
C#
Raw Normal View History

using System.Collections.Generic;
2018-09-12 19:26:21 +02:00
using Emby.Dlna.Configuration;
2019-01-13 20:16:19 +01:00
using MediaBrowser.Common.Configuration;
2016-10-30 00:22:20 +02:00
2016-10-30 00:34:54 +02:00
namespace Emby.Dlna
2016-10-30 00:22:20 +02:00
{
public static class ConfigurationExtension
{
public static DlnaOptions GetDlnaConfiguration(this IConfigurationManager manager)
{
return manager.GetConfiguration<DlnaOptions>("dlna");
}
}
public class DlnaConfigurationFactory : IConfigurationFactory
{
public IEnumerable<ConfigurationStore> GetConfigurations()
{
2018-09-12 19:26:21 +02:00
return new ConfigurationStore[]
2016-10-30 00:22:20 +02:00
{
new ConfigurationStore
{
Key = "dlna",
ConfigurationType = typeof (DlnaOptions)
}
};
}
}
}