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