mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 02:49:05 -07:00
22 lines
595 B
C#
22 lines
595 B
C#
|
using MediaBrowser.Common.Configuration;
|
|||
|
using MediaBrowser.Model.Configuration;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace MediaBrowser.Server.Implementations.LiveTv
|
|||
|
{
|
|||
|
public class LiveTvConfigurationFactory : IConfigurationFactory
|
|||
|
{
|
|||
|
public IEnumerable<ConfigurationStore> GetConfigurations()
|
|||
|
{
|
|||
|
return new List<ConfigurationStore>
|
|||
|
{
|
|||
|
new ConfigurationStore
|
|||
|
{
|
|||
|
ConfigurationType = typeof(LiveTvOptions),
|
|||
|
Key = "livetv"
|
|||
|
}
|
|||
|
};
|
|||
|
}
|
|||
|
}
|
|||
|
}
|