#nullable disable
using System.Text.Json.Serialization;
namespace Emby.Server.Implementations.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 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; }
}
}