using System.Text.Json.Serialization;
namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
{
    /// 
    /// Image data dto.
    /// 
    public class ImageDataDto
    {
        /// 
        /// Gets or sets the width.
        /// 
        [JsonPropertyName("width")]
        public string? Width { get; set; }
        /// 
        /// Gets or sets the height.
        /// 
        [JsonPropertyName("height")]
        public string? Height { get; set; }
        /// 
        /// Gets or sets the uri.
        /// 
        [JsonPropertyName("uri")]
        public string? Uri { get; set; }
        /// 
        /// Gets or sets the size.
        /// 
        [JsonPropertyName("size")]
        public string? Size { get; set; }
        /// 
        /// Gets or sets the aspect.
        /// 
        [JsonPropertyName("aspect")]
        public string? Aspect { get; set; }
        /// 
        /// Gets or sets the category.
        /// 
        [JsonPropertyName("category")]
        public string? Category { get; set; }
        /// 
        /// Gets or sets the text.
        /// 
        [JsonPropertyName("text")]
        public string? Text { get; set; }
        /// 
        /// Gets or sets the primary.
        /// 
        [JsonPropertyName("primary")]
        public string? Primary { get; set; }
        /// 
        /// Gets or sets the tier.
        /// 
        [JsonPropertyName("tier")]
        public string? Tier { get; set; }
        /// 
        /// Gets or sets the caption.
        /// 
        [JsonPropertyName("caption")]
        public CaptionDto? Caption { get; set; }
    }
}