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.
38 lines
952 B
38 lines
952 B
#nullable disable
|
|
|
|
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
|
|
{
|
|
/// <summary>
|
|
/// Lineups dto.
|
|
/// </summary>
|
|
public class LineupsDto
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the response code.
|
|
/// </summary>
|
|
[JsonPropertyName("code")]
|
|
public int Code { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the server id.
|
|
/// </summary>
|
|
[JsonPropertyName("serverID")]
|
|
public string ServerId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the datetime.
|
|
/// </summary>
|
|
[JsonPropertyName("datetime")]
|
|
public string Datetime { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the list of lineups.
|
|
/// </summary>
|
|
[JsonPropertyName("lineups")]
|
|
public List<LineupDto> Lineups { get; set; }
|
|
}
|
|
}
|