using System.Text.Json.Serialization; namespace Jellyfin.LiveTv.Listings.SchedulesDirectDtos { /// /// Metadata programs dto. /// public class MetadataProgramsDto { /// /// Gets or sets the gracenote object. /// [JsonPropertyName("Gracenote")] public GracenoteDto? Gracenote { get; set; } } }