Fix indentation and build errors

This commit is contained in:
Cody Robibero 2021-10-09 07:16:50 -06:00
parent 3bbd98cc3f
commit a81dfabdb6
2 changed files with 51 additions and 51 deletions

View File

@ -53,6 +53,6 @@ namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
/// Gets or sets the match type. /// Gets or sets the match type.
/// </summary> /// </summary>
[JsonPropertyName("matchType")] [JsonPropertyName("matchType")]
public string? MatchType { get;set; } public string? MatchType { get; set; }
} }
} }

View File

@ -5,62 +5,62 @@ using System.Text.Json.Serialization;
namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
{ {
/// <summary> /// <summary>
/// Station dto. /// Station dto.
/// </summary> /// </summary>
public class StationDto public class StationDto
{ {
/// <summary> /// <summary>
/// Gets or sets the station id. /// Gets or sets the station id.
/// </summary> /// </summary>
[JsonPropertyName("stationID")] [JsonPropertyName("stationID")]
public string? StationId { get; set; } public string? StationId { get; set; }
/// <summary> /// <summary>
/// Gets or sets the name. /// Gets or sets the name.
/// </summary> /// </summary>
[JsonPropertyName("name")] [JsonPropertyName("name")]
public string? Name { get; set; } public string? Name { get; set; }
/// <summary> /// <summary>
/// Gets or sets the callsign. /// Gets or sets the callsign.
/// </summary> /// </summary>
[JsonPropertyName("callsign")] [JsonPropertyName("callsign")]
public string? Callsign { get; set; } public string? Callsign { get; set; }
/// <summary> /// <summary>
/// Gets or sets the broadcast language. /// Gets or sets the broadcast language.
/// </summary> /// </summary>
[JsonPropertyName("broadcastLanguage")] [JsonPropertyName("broadcastLanguage")]
public IReadOnlyList<string> BroadcastLanguage { get; set; } = Array.Empty<string>(); public IReadOnlyList<string> BroadcastLanguage { get; set; } = Array.Empty<string>();
/// <summary> /// <summary>
/// Gets or sets the description language. /// Gets or sets the description language.
/// </summary> /// </summary>
[JsonPropertyName("descriptionLanguage")] [JsonPropertyName("descriptionLanguage")]
public IReadOnlyList<string> DescriptionLanguage { get; set; } = Array.Empty<string>(); public IReadOnlyList<string> DescriptionLanguage { get; set; } = Array.Empty<string>();
/// <summary> /// <summary>
/// Gets or sets the broadcaster. /// Gets or sets the broadcaster.
/// </summary> /// </summary>
[JsonPropertyName("broadcaster")] [JsonPropertyName("broadcaster")]
public BroadcasterDto? Broadcaster { get; set; } public BroadcasterDto? Broadcaster { get; set; }
/// <summary> /// <summary>
/// Gets or sets the affiliate. /// Gets or sets the affiliate.
/// </summary> /// </summary>
[JsonPropertyName("affiliate")] [JsonPropertyName("affiliate")]
public string? Affiliate { get; set; } public string? Affiliate { get; set; }
/// <summary> /// <summary>
/// Gets or sets the logo. /// Gets or sets the logo.
/// </summary> /// </summary>
[JsonPropertyName("logo")] [JsonPropertyName("logo")]
public LogoDto? Logo { get; set; } public LogoDto? Logo { get; set; }
/// <summary> /// <summary>
/// Gets or set a value indicating whether it is commercial free. /// Gets or sets a value indicating whether it is commercial free.
/// </summary> /// </summary>
[JsonPropertyName("isCommercialFree")] [JsonPropertyName("isCommercialFree")]
public bool? IsCommercialFree { get; set; } public bool? IsCommercialFree { get; set; }
} }
} }