aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/MetadataProgramsDto.cs
blob: 4057e9802463e8d7e5339b47eec0e90f54160b44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#nullable disable

using System.Text.Json.Serialization;

namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
{
    /// <summary>
    /// Metadata programs dto.
    /// </summary>
    public class MetadataProgramsDto
    {
        /// <summary>
        /// Gets or sets the gracenote object.
        /// </summary>
        [JsonPropertyName("gracenote")]
        public GracenoteDto Gracenote { get; set; }
    }
}