using System.Text.Json.Serialization; namespace Jellyfin.LiveTv.Listings.SchedulesDirectDtos { /// /// Map dto. /// public class MapDto { /// /// Gets or sets the station id. /// [JsonPropertyName("stationID")] public string? StationId { get; set; } /// /// Gets or sets the channel. /// [JsonPropertyName("channel")] public string? Channel { get; set; } /// /// Gets or sets the provider callsign. /// [JsonPropertyName("providerCallsign")] public string? ProvderCallsign { get; set; } /// /// Gets or sets the logical channel number. /// [JsonPropertyName("logicalChannelNumber")] public string? LogicalChannelNumber { get; set; } /// /// Gets or sets the uhfvhf. /// [JsonPropertyName("uhfVhf")] public int UhfVhf { get; set; } /// /// Gets or sets the atsc major. /// [JsonPropertyName("atscMajor")] public int AtscMajor { get; set; } /// /// Gets or sets the atsc minor. /// [JsonPropertyName("atscMinor")] public int AtscMinor { get; set; } /// /// Gets or sets the match type. /// [JsonPropertyName("matchType")] public string? MatchType { get; set; } } }