RecommendationDto.cs 569 B

12345678910111213141516171819202122
  1. using System.Text.Json.Serialization;
  2. namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
  3. {
  4. /// <summary>
  5. /// Recommendation dto.
  6. /// </summary>
  7. public class RecommendationDto
  8. {
  9. /// <summary>
  10. /// Gets or sets the program id.
  11. /// </summary>
  12. [JsonPropertyName("programID")]
  13. public string? ProgramId { get; set; }
  14. /// <summary>
  15. /// Gets or sets the title.
  16. /// </summary>
  17. [JsonPropertyName("title120")]
  18. public string? Title120 { get; set; }
  19. }
  20. }