#nullable disable #pragma warning disable CS1591 using System; namespace MediaBrowser.Model.LiveTv { /// /// Class ServiceInfo. /// public class LiveTvServiceInfo { public LiveTvServiceInfo() { Tuners = Array.Empty(); } /// /// Gets or sets the name. /// /// The name. public string Name { get; set; } /// /// Gets or sets the home page URL. /// /// The home page URL. public string HomePageUrl { get; set; } /// /// 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 a value indicating whether this instance is visible. /// /// true if this instance is visible; otherwise, false. public bool IsVisible { get; set; } public string[] Tuners { get; set; } } }