LogoDto.cs 835 B

12345678910111213141516171819202122232425262728293031323334
  1. using System.Text.Json.Serialization;
  2. namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
  3. {
  4. /// <summary>
  5. /// Logo dto.
  6. /// </summary>
  7. public class LogoDto
  8. {
  9. /// <summary>
  10. /// Gets or sets the url.
  11. /// </summary>
  12. [JsonPropertyName("URL")]
  13. public string? Url { get; set; }
  14. /// <summary>
  15. /// Gets or sets the height.
  16. /// </summary>
  17. [JsonPropertyName("height")]
  18. public int Height { get; set; }
  19. /// <summary>
  20. /// Gets or sets the width.
  21. /// </summary>
  22. [JsonPropertyName("width")]
  23. public int Width { get; set; }
  24. /// <summary>
  25. /// Gets or sets the md5.
  26. /// </summary>
  27. [JsonPropertyName("md5")]
  28. public string? Md5 { get; set; }
  29. }
  30. }