GracenoteDto.cs 541 B

12345678910111213141516171819202122
  1. using System.Text.Json.Serialization;
  2. namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
  3. {
  4. /// <summary>
  5. /// Gracenote dto.
  6. /// </summary>
  7. public class GracenoteDto
  8. {
  9. /// <summary>
  10. /// Gets or sets the season.
  11. /// </summary>
  12. [JsonPropertyName("season")]
  13. public int Season { get; set; }
  14. /// <summary>
  15. /// Gets or sets the episode.
  16. /// </summary>
  17. [JsonPropertyName("episode")]
  18. public int Episode { get; set; }
  19. }
  20. }