aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/MetadataProgramsDto.cs
blob: 843ef9091d6a69c0852190ca1f346455ce71f969 (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; }
    }
}