using System.Text.Json.Serialization;
namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
{
///
/// Logo dto.
///
public class LogoDto
{
///
/// Gets or sets the url.
///
[JsonPropertyName("URL")]
public string? Url { get; set; }
///
/// Gets or sets the height.
///
[JsonPropertyName("height")]
public int Height { get; set; }
///
/// Gets or sets the width.
///
[JsonPropertyName("width")]
public int Width { get; set; }
///
/// Gets or sets the md5.
///
[JsonPropertyName("md5")]
public string? Md5 { get; set; }
}
}