| | | 1 | | #nullable disable |
| | | 2 | | #pragma warning disable CS1591 |
| | | 3 | | |
| | | 4 | | using System; |
| | | 5 | | |
| | | 6 | | namespace MediaBrowser.Model.LiveTv |
| | | 7 | | { |
| | | 8 | | /// <summary> |
| | | 9 | | /// Class ServiceInfo. |
| | | 10 | | /// </summary> |
| | | 11 | | public class LiveTvServiceInfo |
| | | 12 | | { |
| | | 13 | | public LiveTvServiceInfo() |
| | | 14 | | { |
| | 0 | 15 | | Tuners = Array.Empty<string>(); |
| | 0 | 16 | | } |
| | | 17 | | |
| | | 18 | | /// <summary> |
| | | 19 | | /// Gets or sets the name. |
| | | 20 | | /// </summary> |
| | | 21 | | /// <value>The name.</value> |
| | | 22 | | public string Name { get; set; } |
| | | 23 | | |
| | | 24 | | /// <summary> |
| | | 25 | | /// Gets or sets the home page URL. |
| | | 26 | | /// </summary> |
| | | 27 | | /// <value>The home page URL.</value> |
| | | 28 | | public string HomePageUrl { get; set; } |
| | | 29 | | |
| | | 30 | | /// <summary> |
| | | 31 | | /// Gets or sets the status. |
| | | 32 | | /// </summary> |
| | | 33 | | /// <value>The status.</value> |
| | | 34 | | public LiveTvServiceStatus Status { get; set; } |
| | | 35 | | |
| | | 36 | | /// <summary> |
| | | 37 | | /// Gets or sets the status message. |
| | | 38 | | /// </summary> |
| | | 39 | | /// <value>The status message.</value> |
| | | 40 | | public string StatusMessage { get; set; } |
| | | 41 | | |
| | | 42 | | /// <summary> |
| | | 43 | | /// Gets or sets the version. |
| | | 44 | | /// </summary> |
| | | 45 | | /// <value>The version.</value> |
| | | 46 | | public string Version { get; set; } |
| | | 47 | | |
| | | 48 | | /// <summary> |
| | | 49 | | /// Gets or sets a value indicating whether this instance has update available. |
| | | 50 | | /// </summary> |
| | | 51 | | /// <value><c>true</c> if this instance has update available; otherwise, <c>false</c>.</value> |
| | | 52 | | public bool HasUpdateAvailable { get; set; } |
| | | 53 | | |
| | | 54 | | /// <summary> |
| | | 55 | | /// Gets or sets a value indicating whether this instance is visible. |
| | | 56 | | /// </summary> |
| | | 57 | | /// <value><c>true</c> if this instance is visible; otherwise, <c>false</c>.</value> |
| | | 58 | | public bool IsVisible { get; set; } |
| | | 59 | | |
| | | 60 | | public string[] Tuners { get; set; } |
| | | 61 | | } |
| | | 62 | | } |