jellyfin/MediaBrowser.Model/LiveTv/LiveTvOptions.cs

25 lines
638 B
C#
Raw Normal View History

2015-07-20 20:32:55 +02:00
using System.Collections.Generic;
namespace MediaBrowser.Model.LiveTv
{
public class LiveTvOptions
{
public int? GuideDays { get; set; }
2015-03-14 21:00:32 +01:00
public bool EnableMovieProviders { get; set; }
2015-07-20 20:32:55 +02:00
public List<TunerHostInfo> TunerHosts { get; set; }
public string RecordingPath { get; set; }
2015-03-15 02:42:09 +01:00
public LiveTvOptions()
{
EnableMovieProviders = true;
2015-07-20 20:32:55 +02:00
TunerHosts = new List<TunerHostInfo>();
2015-03-15 02:42:09 +01:00
}
}
2015-07-20 20:32:55 +02:00
public class TunerHostInfo
{
2015-07-21 06:22:46 +02:00
public string Id { get; set; }
2015-07-20 20:32:55 +02:00
public string Url { get; set; }
public string Type { get; set; }
}
}