using System.Text.Json.Serialization; namespace Jellyfin.LiveTv.Listings.SchedulesDirectDtos { /// /// The lineup dto. /// public class LineupDto { /// /// Gets or sets the linup. /// [JsonPropertyName("lineup")] public string? Lineup { get; set; } /// /// Gets or sets the lineup name. /// [JsonPropertyName("name")] public string? Name { get; set; } /// /// Gets or sets the transport. /// [JsonPropertyName("transport")] public string? Transport { get; set; } /// /// Gets or sets the location. /// [JsonPropertyName("location")] public string? Location { get; set; } /// /// Gets or sets the uri. /// [JsonPropertyName("uri")] public string? Uri { get; set; } /// /// Gets or sets a value indicating whether this lineup was deleted. /// [JsonPropertyName("isDeleted")] public bool? IsDeleted { get; set; } } }