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. public LiveTvServiceInfo()
  12. {
  13. Tuners = Array.Empty<string>();
  14. }
  15. /// <summary>
  16. /// Gets or sets the name.
  17. /// </summary>
  18. /// <value>The name.</value>
  19. public string Name { get; set; }
  20. /// <summary>
  21. /// Gets or sets the home page URL.
  22. /// </summary>
  23. /// <value>The home page URL.</value>
  24. public string HomePageUrl { get; set; }
  25. /// <summary>
  26. /// Gets or sets the status.
  27. /// </summary>
  28. /// <value>The status.</value>
  29. public LiveTvServiceStatus Status { get; set; }
  30. /// <summary>
  31. /// Gets or sets the status message.
  32. /// </summary>
  33. /// <value>The status message.</value>
  34. public string StatusMessage { get; set; }
  35. /// <summary>
  36. /// Gets or sets the version.
  37. /// </summary>
  38. /// <value>The version.</value>
  39. public string Version { get; set; }
  40. /// <summary>
  41. /// Gets or sets a value indicating whether this instance has update available.
  42. /// </summary>
  43. /// <value><c>true</c> if this instance has update available; otherwise, <c>false</c>.</value>
  44. public bool HasUpdateAvailable { get; set; }
  45. /// <summary>
  46. /// Gets or sets a value indicating whether this instance is visible.
  47. /// </summary>
  48. /// <value><c>true</c> if this instance is visible; otherwise, <c>false</c>.</value>
  49. public bool IsVisible { get; set; }
  50. public string[] Tuners { get; set; }
  51. }
  52. }