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

22 lines
573 B
C#
Raw Normal View History

using System.Collections.Generic;
using MediaBrowser.Common.Configuration;
2014-07-30 19:09:23 -07:00
using MediaBrowser.Model.LiveTv;
2014-07-27 15:01:29 -07:00
2016-11-03 16:35:19 -07:00
namespace Emby.Server.Implementations.LiveTv
2014-07-27 15:01:29 -07:00
{
public class LiveTvConfigurationFactory : IConfigurationFactory
{
public IEnumerable<ConfigurationStore> GetConfigurations()
{
2018-09-12 10:26:21 -07:00
return new ConfigurationStore[]
2014-07-27 15:01:29 -07:00
{
new ConfigurationStore
{
ConfigurationType = typeof(LiveTvOptions),
Key = "livetv"
}
};
}
}
}