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-31 04:09:23 +02:00
using MediaBrowser.Model.LiveTv;
2014-07-28 00:01:29 +02:00
2016-11-04 00:35:19 +01:00
namespace Emby.Server.Implementations.LiveTv
2014-07-28 00:01:29 +02:00
{
public class LiveTvConfigurationFactory : IConfigurationFactory
{
public IEnumerable<ConfigurationStore> GetConfigurations()
{
2018-09-12 19:26:21 +02:00
return new ConfigurationStore[]
2014-07-28 00:01:29 +02:00
{
new ConfigurationStore
{
ConfigurationType = typeof(LiveTvOptions),
Key = "livetv"
}
};
}
}
}