MapDto.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #nullable disable
  2. using System.Text.Json.Serialization;
  3. namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
  4. {
  5. /// <summary>
  6. /// Map dto.
  7. /// </summary>
  8. public class MapDto
  9. {
  10. /// <summary>
  11. /// Gets or sets the station id.
  12. /// </summary>
  13. [JsonPropertyName("stationID")]
  14. public string StationId { get; set; }
  15. /// <summary>
  16. /// Gets or sets the channel.
  17. /// </summary>
  18. [JsonPropertyName("channel")]
  19. public string Channel { get; set; }
  20. /// <summary>
  21. /// Gets or sets the logical channel number.
  22. /// </summary>
  23. [JsonPropertyName("logicalChannelNumber")]
  24. public string LogicalChannelNumber { get; set; }
  25. /// <summary>
  26. /// Gets or sets the uhfvhf.
  27. /// </summary>
  28. [JsonPropertyName("uhfVhf")]
  29. public int UhfVhf { get; set; }
  30. /// <summary>
  31. /// Gets or sets the atsc major.
  32. /// </summary>
  33. [JsonPropertyName("atscMajor")]
  34. public int AtscMajor { get; set; }
  35. /// <summary>
  36. /// Gets or sets the atsc minor.
  37. /// </summary>
  38. [JsonPropertyName("atscMinor")]
  39. public int AtscMinor { get; set; }
  40. }
  41. }