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.
41 lines
913 B
41 lines
913 B
using System;
|
|
|
|
namespace Emby.Server.Implementations.LiveTv.TunerHosts.HdHomerun
|
|
{
|
|
internal class DiscoverResponse
|
|
{
|
|
public string FriendlyName { get; set; }
|
|
|
|
public string ModelNumber { get; set; }
|
|
|
|
public string FirmwareName { get; set; }
|
|
|
|
public string FirmwareVersion { get; set; }
|
|
|
|
public string DeviceID { get; set; }
|
|
|
|
public string DeviceAuth { get; set; }
|
|
|
|
public string BaseURL { get; set; }
|
|
|
|
public string LineupURL { get; set; }
|
|
|
|
public int TunerCount { get; set; }
|
|
|
|
public bool SupportsTranscoding
|
|
{
|
|
get
|
|
{
|
|
var model = ModelNumber ?? string.Empty;
|
|
|
|
if (model.IndexOf("hdtc", StringComparison.OrdinalIgnoreCase) != -1)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
}
|