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; } } }