LiveTvServiceStatusInfo.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. #nullable disable
  2. #pragma warning disable CS1591
  3. using System.Collections.Generic;
  4. using MediaBrowser.Model.LiveTv;
  5. namespace MediaBrowser.Controller.LiveTv
  6. {
  7. public class LiveTvServiceStatusInfo
  8. {
  9. public LiveTvServiceStatusInfo()
  10. {
  11. Tuners = new List<LiveTvTunerInfo>();
  12. IsVisible = true;
  13. }
  14. /// <summary>
  15. /// Gets or sets the status.
  16. /// </summary>
  17. /// <value>The status.</value>
  18. public LiveTvServiceStatus Status { get; set; }
  19. /// <summary>
  20. /// Gets or sets the status message.
  21. /// </summary>
  22. /// <value>The status message.</value>
  23. public string StatusMessage { get; set; }
  24. /// <summary>
  25. /// Gets or sets the version.
  26. /// </summary>
  27. /// <value>The version.</value>
  28. public string Version { get; set; }
  29. /// <summary>
  30. /// Gets or sets a value indicating whether this instance has update available.
  31. /// </summary>
  32. /// <value><c>true</c> if this instance has update available; otherwise, <c>false</c>.</value>
  33. public bool HasUpdateAvailable { get; set; }
  34. /// <summary>
  35. /// Gets or sets the tuners.
  36. /// </summary>
  37. /// <value>The tuners.</value>
  38. public List<LiveTvTunerInfo> Tuners { get; set; }
  39. /// <summary>
  40. /// Gets or sets a value indicating whether this instance is visible.
  41. /// </summary>
  42. /// <value><c>true</c> if this instance is visible; otherwise, <c>false</c>.</value>
  43. public bool IsVisible { get; set; }
  44. }
  45. }