using System; using System.Collections.Generic; using System.Text.Json.Serialization; namespace Jellyfin.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(); } }