using System;
using System.Collections.Generic;
using System.Text.Json.Serialization;
namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
{
    /// 
    /// Show image dto.
    /// 
    public class ShowImagesDto
    {
        /// 
        /// Gets or sets the program id.
        /// 
        [JsonPropertyName("programID")]
        public string? ProgramId { get; set; }
        /// 
        /// Gets or sets the list of data.
        /// 
        [JsonPropertyName("data")]
        public IReadOnlyList Data { get; set; } = Array.Empty();
    }
}