LiveTvServiceInfo.cs 1.7 KB

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