LiveTvServiceInfo.cs 1.7 KB

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