You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
2.3 KiB
68 lines
2.3 KiB
#nullable disable
|
|
|
|
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
|
|
{
|
|
/// <summary>
|
|
/// Station dto.
|
|
/// </summary>
|
|
public class StationDto
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the station id.
|
|
/// </summary>
|
|
[JsonPropertyName("stationID")]
|
|
public string StationId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the name.
|
|
/// </summary>
|
|
[JsonPropertyName("name")]
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the callsign.
|
|
/// </summary>
|
|
[JsonPropertyName("callsign")]
|
|
public string Callsign { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the broadcast language.
|
|
/// </summary>
|
|
[JsonPropertyName("broadcastLanguage")]
|
|
public List<string> BroadcastLanguage { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the description language.
|
|
/// </summary>
|
|
[JsonPropertyName("descriptionLanguage")]
|
|
public List<string> DescriptionLanguage { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the broadcaster.
|
|
/// </summary>
|
|
[JsonPropertyName("broadcaster")]
|
|
public BroadcasterDto Broadcaster { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the affiliate.
|
|
/// </summary>
|
|
[JsonPropertyName("affiliate")]
|
|
public string Affiliate { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the logo.
|
|
/// </summary>
|
|
[JsonPropertyName("logo")]
|
|
public LogoDto Logo { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or set a value indicating whether it is commercial free.
|
|
/// </summary>
|
|
[JsonPropertyName("isCommercialFree")]
|
|
public bool? IsCommercialFree { get; set; }
|
|
}
|
|
}
|