Description100Dto.cs 612 B

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