CaptionDto.cs 539 B

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