LogoDto.cs 852 B

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