#nullable disable using System.Collections.Generic; using System.Text.Json.Serialization; namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos { /// /// Day dto. /// public class DayDto { /// /// Initializes a new instance of the class. /// public DayDto() { Programs = new List(); } /// /// Gets or sets the station id. /// [JsonPropertyName("stationID")] public string StationId { get; set; } /// /// Gets or sets the list of programs. /// [JsonPropertyName("programs")] public List Programs { get; set; } /// /// Gets or sets the metadata schedule. /// [JsonPropertyName("metadata")] public MetadataScheduleDto Metadata { get; set; } } }