Files
jellyfin-jellyfin-1/MediaBrowser.Server.Implementations/LiveTv/LiveTvConfigurationFactory.cs
Luke Pulverenti a37a11c486 3.0.5324.37963
2014-07-30 22:09:23 -04:00

22 lines
588 B
C#

using MediaBrowser.Common.Configuration;
using MediaBrowser.Model.LiveTv;
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"
}
};
}
}
}