jellyfin/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/MapDto.cs

59 lines
1.6 KiB
C#
Raw Normal View History

2021-08-29 00:32:50 +02:00
using System.Text.Json.Serialization;
namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
{
/// <summary>
/// Map dto.
/// </summary>
public class MapDto
{
/// <summary>
/// Gets or sets the station id.
/// </summary>
[JsonPropertyName("stationID")]
2021-09-03 18:59:40 +02:00
public string? StationId { get; set; }
2021-08-29 00:32:50 +02:00
/// <summary>
/// Gets or sets the channel.
/// </summary>
[JsonPropertyName("channel")]
2021-09-03 18:59:40 +02:00
public string? Channel { get; set; }
2021-08-29 00:32:50 +02:00
2021-09-03 20:35:52 +02:00
/// <summary>
/// Gets or sets the provider callsign.
/// </summary>
[JsonPropertyName("providerCallsign")]
public string? ProvderCallsign { get; set; }
2021-08-29 00:32:50 +02:00
/// <summary>
/// Gets or sets the logical channel number.
/// </summary>
[JsonPropertyName("logicalChannelNumber")]
2021-09-03 18:59:40 +02:00
public string? LogicalChannelNumber { get; set; }
2021-08-29 00:32:50 +02:00
/// <summary>
/// Gets or sets the uhfvhf.
/// </summary>
[JsonPropertyName("uhfVhf")]
public int UhfVhf { get; set; }
/// <summary>
2021-09-03 15:21:21 +02:00
/// Gets or sets the atsc major.
2021-08-29 00:32:50 +02:00
/// </summary>
2021-09-03 15:21:21 +02:00
[JsonPropertyName("atscMajor")]
2021-08-29 00:32:50 +02:00
public int AtscMajor { get; set; }
/// <summary>
2021-09-03 15:21:21 +02:00
/// Gets or sets the atsc minor.
2021-08-29 00:32:50 +02:00
/// </summary>
2021-09-03 15:21:21 +02:00
[JsonPropertyName("atscMinor")]
2021-08-29 00:32:50 +02:00
public int AtscMinor { get; set; }
2021-09-03 20:35:52 +02:00
/// <summary>
/// Gets or sets the match type.
/// </summary>
[JsonPropertyName("matchType")]
2021-10-09 15:16:50 +02:00
public string? MatchType { get; set; }
2021-08-29 00:32:50 +02:00
}
}