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.
39 lines
787 B
39 lines
787 B
#nullable disable
|
|
#pragma warning disable CS1591
|
|
|
|
using System;
|
|
using MediaBrowser.Model.Dto;
|
|
|
|
namespace MediaBrowser.Model.LiveTv
|
|
{
|
|
public class TunerHostInfo
|
|
{
|
|
public TunerHostInfo()
|
|
{
|
|
AllowHWTranscoding = true;
|
|
}
|
|
|
|
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; }
|
|
}
|
|
}
|