LiveTvInfo.cs 945 B

12345678910111213141516171819202122232425262728293031323334
  1. #pragma warning disable CS1591
  2. #pragma warning disable SA1600
  3. using System;
  4. namespace MediaBrowser.Model.LiveTv
  5. {
  6. public class LiveTvInfo
  7. {
  8. /// <summary>
  9. /// Gets or sets the services.
  10. /// </summary>
  11. /// <value>The services.</value>
  12. public LiveTvServiceInfo[] Services { get; set; }
  13. /// <summary>
  14. /// Gets or sets a value indicating whether this instance is enabled.
  15. /// </summary>
  16. /// <value><c>true</c> if this instance is enabled; otherwise, <c>false</c>.</value>
  17. public bool IsEnabled { get; set; }
  18. /// <summary>
  19. /// Gets or sets the enabled users.
  20. /// </summary>
  21. /// <value>The enabled users.</value>
  22. public string[] EnabledUsers { get; set; }
  23. public LiveTvInfo()
  24. {
  25. Services = Array.Empty<LiveTvServiceInfo>();
  26. EnabledUsers = Array.Empty<string>();
  27. }
  28. }
  29. }