diff options
| -rw-r--r-- | Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/LineupDto.cs | 2 | ||||
| -rw-r--r-- | Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/MapDto.cs | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/LineupDto.cs b/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/LineupDto.cs index b8f27a8ac..52e920aa6 100644 --- a/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/LineupDto.cs +++ b/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/LineupDto.cs @@ -24,7 +24,7 @@ namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos /// <summary> /// Gets or sets the transport. /// </summary> - [JsonPropertyName("transport.")] + [JsonPropertyName("transport")] public string Transport { get; set; } /// <summary> diff --git a/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/MapDto.cs b/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/MapDto.cs index 8d45e8fff..5140277b2 100644 --- a/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/MapDto.cs +++ b/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/MapDto.cs @@ -34,15 +34,15 @@ namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos public int UhfVhf { get; set; } /// <summary> - /// Gets or sets the astc major. + /// Gets or sets the atsc major. /// </summary> - [JsonPropertyName("astcMajor")] + [JsonPropertyName("atscMajor")] public int AtscMajor { get; set; } /// <summary> - /// Gets or sets the astc minor. + /// Gets or sets the atsc minor. /// </summary> - [JsonPropertyName("astcMinor")] + [JsonPropertyName("atscMinor")] public int AtscMinor { get; set; } } } |
