2
0

LiveTvServiceInfo.cs 1.5 KB

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