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

24 lines
605 B
C#
Raw Normal View History

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