DescriptionsProgramDto.cs 807 B

123456789101112131415161718192021222324
  1. using System;
  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 IReadOnlyList<Description100Dto> Description100 { get; set; } = Array.Empty<Description100Dto>();
  16. /// <summary>
  17. /// Gets or sets the list of description1000.
  18. /// </summary>
  19. [JsonPropertyName("description1000")]
  20. public IReadOnlyList<Description1000Dto> Description1000 { get; set; } = Array.Empty<Description1000Dto>();
  21. }
  22. }