MapDto.cs 1.6 KB

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