2021-02-20 22:13:04 +00:00
|
|
|
#nullable disable
|
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.LiveTv
|
|
|
|
{
|
|
|
|
public class TunerHostInfo
|
|
|
|
{
|
|
|
|
public TunerHostInfo()
|
|
|
|
{
|
|
|
|
AllowHWTranscoding = true;
|
2022-06-12 22:51:08 +00:00
|
|
|
IgnoreDts = true;
|
2021-02-20 22:13:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
|
|
|
public string Url { get; set; }
|
|
|
|
|
|
|
|
public string Type { get; set; }
|
|
|
|
|
|
|
|
public string DeviceId { get; set; }
|
|
|
|
|
|
|
|
public string FriendlyName { get; set; }
|
|
|
|
|
|
|
|
public bool ImportFavoritesOnly { get; set; }
|
|
|
|
|
|
|
|
public bool AllowHWTranscoding { get; set; }
|
|
|
|
|
|
|
|
public bool EnableStreamLooping { get; set; }
|
|
|
|
|
|
|
|
public string Source { get; set; }
|
|
|
|
|
|
|
|
public int TunerCount { get; set; }
|
|
|
|
|
|
|
|
public string UserAgent { get; set; }
|
2022-06-12 22:51:08 +00:00
|
|
|
|
|
|
|
public bool IgnoreDts { get; set; }
|
2021-02-20 22:13:04 +00:00
|
|
|
}
|
|
|
|
}
|