You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
852 B
37 lines
852 B
3 years ago
|
#nullable disable
|
||
|
|
||
|
using System.Text.Json.Serialization;
|
||
|
|
||
|
namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Logo dto.
|
||
|
/// </summary>
|
||
|
public class LogoDto
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Gets or sets the url.
|
||
|
/// </summary>
|
||
|
[JsonPropertyName("URL")]
|
||
|
public string Url { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Gets or sets the height.
|
||
|
/// </summary>
|
||
|
[JsonPropertyName("height")]
|
||
|
public int Height { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Gets or sets the width.
|
||
|
/// </summary>
|
||
|
[JsonPropertyName("width")]
|
||
|
public int Width { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Gets or sets the md5.
|
||
|
/// </summary>
|
||
|
[JsonPropertyName("md5")]
|
||
|
public string Md5 { get; set; }
|
||
|
}
|
||
|
}
|