using System.Text.Json.Serialization; namespace Jellyfin.LiveTv.Listings.SchedulesDirectDtos { /// /// Metadata dto. /// public class MetadataDto { /// /// Gets or sets the linup. /// [JsonPropertyName("lineup")] public string? Lineup { get; set; } /// /// Gets or sets the modified timestamp. /// [JsonPropertyName("modified")] public string? Modified { get; set; } /// /// Gets or sets the transport. /// [JsonPropertyName("transport")] public string? Transport { get; set; } } }