LiveTvInfo.cs 914 B

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