Description1000Dto.cs 632 B

123456789101112131415161718192021222324
  1. #nullable disable
  2. using System.Text.Json.Serialization;
  3. namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
  4. {
  5. /// <summary>
  6. /// Description 1_000 dto.
  7. /// </summary>
  8. public class Description1000Dto
  9. {
  10. /// <summary>
  11. /// Gets or sets the description language.
  12. /// </summary>
  13. [JsonPropertyName("descriptionLanguage")]
  14. public string DescriptionLanguage { get; set; }
  15. /// <summary>
  16. /// Gets or sets the description.
  17. /// </summary>
  18. [JsonPropertyName("description")]
  19. public string Description { get; set; }
  20. }
  21. }