aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/MetadataProgramsDto.cs
blob: 43f29015667e448901f32baeb5a892acf32b890e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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; }
    }
}