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.
37 lines
995 B
37 lines
995 B
using System;
|
|
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 DateTime? LineupTimestamp { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the list of lineups.
|
|
/// </summary>
|
|
[JsonPropertyName("lineups")]
|
|
public IReadOnlyList<LineupDto> Lineups { get; set; } = Array.Empty<LineupDto>();
|
|
}
|
|
}
|