using System; using System.Collections.Generic; using System.Text.Json.Serialization; namespace Jellyfin.LiveTv.Listings.SchedulesDirectDtos { /// /// Day dto. /// public class DayDto { /// /// Gets or sets the station id. /// [JsonPropertyName("stationID")] public string? StationId { get; set; } /// /// Gets or sets the list of programs. /// [JsonPropertyName("programs")] public IReadOnlyList Programs { get; set; } = Array.Empty(); /// /// Gets or sets the metadata schedule. /// [JsonPropertyName("metadata")] public MetadataScheduleDto? Metadata { get; set; } } }