#nullable disable using System.Collections.Generic; using System.Text.Json.Serialization; namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos { /// /// Channel dto. /// public class ChannelDto { /// /// Gets or sets the list of maps. /// [JsonPropertyName("map")] public List Map { get; set; } /// /// Gets or sets the list of stations. /// [JsonPropertyName("stations")] public List Stations { get; set; } /// /// Gets or sets the metadata. /// [JsonPropertyName("metadata")] public MetadataDto Metadata { get; set; } } }