LiveTvServiceStatusInfo.cs 1.6 KB

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