#nullable disable using System.Collections.Generic; using System.Text.Json.Serialization; namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos { /// /// Lineups dto. /// public class LineupsDto { /// /// Gets or sets the response code. /// [JsonPropertyName("code")] public int Code { get; set; } /// /// Gets or sets the server id. /// [JsonPropertyName("serverID")] public string ServerId { get; set; } /// /// Gets or sets the datetime. /// [JsonPropertyName("datetime")] public string Datetime { get; set; } /// /// Gets or sets the list of lineups. /// [JsonPropertyName("lineups")] public List Lineups { get; set; } } }