#nullable disable
using System.Collections.Generic;
using System.Text.Json.Serialization;
namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
{
///
/// Station dto.
///
public class StationDto
{
///
/// Gets or sets the station id.
///
[JsonPropertyName("stationID")]
public string StationId { get; set; }
///
/// Gets or sets the name.
///
[JsonPropertyName("name")]
public string Name { get; set; }
///
/// Gets or sets the callsign.
///
[JsonPropertyName("callsign")]
public string Callsign { get; set; }
///
/// Gets or sets the broadcast language.
///
[JsonPropertyName("broadcastLanguage")]
public List BroadcastLanguage { get; set; }
///
/// Gets or sets the description language.
///
[JsonPropertyName("descriptionLanguage")]
public List DescriptionLanguage { get; set; }
///
/// Gets or sets the broadcaster.
///
[JsonPropertyName("broadcaster")]
public BroadcasterDto Broadcaster { get; set; }
///
/// Gets or sets the affiliate.
///
[JsonPropertyName("affiliate")]
public string Affiliate { get; set; }
///
/// Gets or sets the logo.
///
[JsonPropertyName("logo")]
public LogoDto Logo { get; set; }
///
/// Gets or set a value indicating whether it is commercial free.
///
[JsonPropertyName("isCommercialFree")]
public bool? IsCommercialFree { get; set; }
}
}