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.
43 lines
1.0 KiB
43 lines
1.0 KiB
#nullable disable
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
|
|
{
|
|
/// <summary>
|
|
/// The lineup dto.
|
|
/// </summary>
|
|
public class LineupDto
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the linup.
|
|
/// </summary>
|
|
[JsonPropertyName("lineup")]
|
|
public string Lineup { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the lineup name.
|
|
/// </summary>
|
|
[JsonPropertyName("name")]
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the transport.
|
|
/// </summary>
|
|
[JsonPropertyName("transport")]
|
|
public string Transport { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the location.
|
|
/// </summary>
|
|
[JsonPropertyName("location")]
|
|
public string Location { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the uri.
|
|
/// </summary>
|
|
[JsonPropertyName("uri")]
|
|
public string Uri { get; set; }
|
|
}
|
|
}
|