using System.Collections.Generic;
using MediaBrowser.Model.LiveTv;
namespace MediaBrowser.Controller.LiveTv
{
public class LiveTvServiceStatusInfo
{
///
/// Gets or sets the status.
///
/// The status.
public LiveTvServiceStatus Status { get; set; }
///
/// Gets or sets the status message.
///
/// The status message.
public string StatusMessage { get; set; }
///
/// Gets or sets the version.
///
/// The version.
public string Version { get; set; }
///
/// Gets or sets a value indicating whether this instance has update available.
///
/// true if this instance has update available; otherwise, false.
public bool HasUpdateAvailable { get; set; }
///
/// Gets or sets the tuners.
///
/// The tuners.
public List Tuners { get; set; }
///
/// Gets or sets a value indicating whether this instance is visible.
///
/// true if this instance is visible; otherwise, false.
public bool IsVisible { get; set; }
public LiveTvServiceStatusInfo()
{
Tuners = new List();
IsVisible = true;
}
}
}