completed tuner hosts

This commit is contained in:
Luke Pulverenti
2015-07-21 00:22:46 -04:00
parent 20b990dc9a
commit 9457ff7ce8
12 changed files with 123 additions and 10 deletions

View File

@@ -18,6 +18,7 @@ namespace MediaBrowser.Model.LiveTv
public class TunerHostInfo
{
public string Id { get; set; }
public string Url { get; set; }
public string Type { get; set; }
}

View File

@@ -42,6 +42,11 @@ namespace MediaBrowser.Model.LiveTv
/// </summary>
/// <value><c>true</c> if this instance has update available; otherwise, <c>false</c>.</value>
public bool HasUpdateAvailable { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is visible.
/// </summary>
/// <value><c>true</c> if this instance is visible; otherwise, <c>false</c>.</value>
public bool IsVisible { get; set; }
public List<LiveTvTunerInfoDto> Tuners { get; set; }