2
0

LiveTvInfo.cs 916 B

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