using System.Text.Json.Serialization;
namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
{
///
/// Gracenote dto.
///
public class GracenoteDto
{
///
/// Gets or sets the season.
///
[JsonPropertyName("season")]
public int Season { get; set; }
///
/// Gets or sets the episode.
///
[JsonPropertyName("episode")]
public int Episode { get; set; }
}
}