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