LineupsDto.cs 952 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #nullable disable
  2. using System.Collections.Generic;
  3. using System.Text.Json.Serialization;
  4. namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
  5. {
  6. /// <summary>
  7. /// Lineups dto.
  8. /// </summary>
  9. public class LineupsDto
  10. {
  11. /// <summary>
  12. /// Gets or sets the response code.
  13. /// </summary>
  14. [JsonPropertyName("code")]
  15. public int Code { get; set; }
  16. /// <summary>
  17. /// Gets or sets the server id.
  18. /// </summary>
  19. [JsonPropertyName("serverID")]
  20. public string ServerId { get; set; }
  21. /// <summary>
  22. /// Gets or sets the datetime.
  23. /// </summary>
  24. [JsonPropertyName("datetime")]
  25. public string Datetime { get; set; }
  26. /// <summary>
  27. /// Gets or sets the list of lineups.
  28. /// </summary>
  29. [JsonPropertyName("lineups")]
  30. public List<LineupDto> Lineups { get; set; }
  31. }
  32. }