jellyfin/MediaBrowser.Server.Implementations/LiveTv/LiveTvConfigurationFactory.cs

22 lines
588 B
C#
Raw Normal View History

2014-07-28 00:01:29 +02:00
using MediaBrowser.Common.Configuration;
2014-07-31 04:09:23 +02:00
using MediaBrowser.Model.LiveTv;
2014-07-28 00:01:29 +02:00
using System.Collections.Generic;
namespace MediaBrowser.Server.Implementations.LiveTv
{
public class LiveTvConfigurationFactory : IConfigurationFactory
{
public IEnumerable<ConfigurationStore> GetConfigurations()
{
return new List<ConfigurationStore>
{
new ConfigurationStore
{
ConfigurationType = typeof(LiveTvOptions),
Key = "livetv"
}
};
}
}
}