jellyfin/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/ImageDataDto.cs

71 lines
1.8 KiB
C#
Raw Normal View History

2021-08-29 00:32:50 +02:00
using System.Text.Json.Serialization;
namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
{
2021-08-29 07:02:13 +02:00
/// <summary>
/// Image data dto.
/// </summary>
2021-08-29 00:32:50 +02:00
public class ImageDataDto
{
/// <summary>
/// Gets or sets the width.
/// </summary>
[JsonPropertyName("width")]
2021-09-03 18:59:40 +02:00
public string? Width { get; set; }
2021-08-29 00:32:50 +02:00
/// <summary>
/// Gets or sets the height.
/// </summary>
[JsonPropertyName("height")]
2021-09-03 18:59:40 +02:00
public string? Height { get; set; }
2021-08-29 00:32:50 +02:00
/// <summary>
/// Gets or sets the uri.
/// </summary>
[JsonPropertyName("uri")]
2021-09-03 18:59:40 +02:00
public string? Uri { get; set; }
2021-08-29 00:32:50 +02:00
/// <summary>
/// Gets or sets the size.
/// </summary>
[JsonPropertyName("size")]
2021-09-03 18:59:40 +02:00
public string? Size { get; set; }
2021-08-29 00:32:50 +02:00
/// <summary>
/// Gets or sets the aspect.
/// </summary>
[JsonPropertyName("aspect")]
2021-09-03 20:35:52 +02:00
public string? Aspect { get; set; }
2021-08-29 00:32:50 +02:00
/// <summary>
/// Gets or sets the category.
/// </summary>
[JsonPropertyName("category")]
2021-09-03 18:59:40 +02:00
public string? Category { get; set; }
2021-08-29 00:32:50 +02:00
/// <summary>
/// Gets or sets the text.
/// </summary>
[JsonPropertyName("text")]
2021-09-03 18:59:40 +02:00
public string? Text { get; set; }
2021-08-29 00:32:50 +02:00
/// <summary>
/// Gets or sets the primary.
/// </summary>
[JsonPropertyName("primary")]
2021-09-03 18:59:40 +02:00
public string? Primary { get; set; }
2021-08-29 00:32:50 +02:00
/// <summary>
/// Gets or sets the tier.
/// </summary>
[JsonPropertyName("tier")]
2021-09-03 18:59:40 +02:00
public string? Tier { get; set; }
2021-08-29 00:32:50 +02:00
/// <summary>
/// Gets or sets the caption.
/// </summary>
[JsonPropertyName("caption")]
2021-09-03 18:59:40 +02:00
public CaptionDto? Caption { get; set; }
2021-08-29 00:32:50 +02:00
}
}