You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
729 B
26 lines
729 B
using System.Collections.Generic;
|
|
using MediaBrowser.Common.Configuration;
|
|
using MediaBrowser.Model.LiveTv;
|
|
|
|
namespace Emby.Server.Implementations.LiveTv
|
|
{
|
|
/// <summary>
|
|
/// <see cref="IConfigurationFactory" /> implementation for <see cref="LiveTvOptions" />.
|
|
/// </summary>
|
|
public class LiveTvConfigurationFactory : IConfigurationFactory
|
|
{
|
|
/// <inheritdoc />
|
|
public IEnumerable<ConfigurationStore> GetConfigurations()
|
|
{
|
|
return new ConfigurationStore[]
|
|
{
|
|
new ConfigurationStore
|
|
{
|
|
ConfigurationType = typeof(LiveTvOptions),
|
|
Key = "livetv"
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|