Fix typos

This commit is contained in:
Cody Robibero 2021-09-03 07:21:21 -06:00
parent 3f2c706575
commit bfb37a9ed9
2 changed files with 5 additions and 5 deletions

View File

@ -24,7 +24,7 @@ namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
/// <summary> /// <summary>
/// Gets or sets the transport. /// Gets or sets the transport.
/// </summary> /// </summary>
[JsonPropertyName("transport.")] [JsonPropertyName("transport")]
public string Transport { get; set; } public string Transport { get; set; }
/// <summary> /// <summary>

View File

@ -34,15 +34,15 @@ namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
public int UhfVhf { get; set; } public int UhfVhf { get; set; }
/// <summary> /// <summary>
/// Gets or sets the astc major. /// Gets or sets the atsc major.
/// </summary> /// </summary>
[JsonPropertyName("astcMajor")] [JsonPropertyName("atscMajor")]
public int AtscMajor { get; set; } public int AtscMajor { get; set; }
/// <summary> /// <summary>
/// Gets or sets the astc minor. /// Gets or sets the atsc minor.
/// </summary> /// </summary>
[JsonPropertyName("astcMinor")] [JsonPropertyName("atscMinor")]
public int AtscMinor { get; set; } public int AtscMinor { get; set; }
} }
} }