DescriptionsProgramDto.cs 721 B

12345678910111213141516171819202122232425
  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. /// Descriptions program dto.
  8. /// </summary>
  9. public class DescriptionsProgramDto
  10. {
  11. /// <summary>
  12. /// Gets or sets the list of description 100.
  13. /// </summary>
  14. [JsonPropertyName("description100")]
  15. public List<Description100Dto> Description100 { get; set; }
  16. /// <summary>
  17. /// Gets or sets the list of description1000.
  18. /// </summary>
  19. [JsonPropertyName("description1000")]
  20. public List<Description1000Dto> Description1000 { get; set; }
  21. }
  22. }