ContentRatingDto.cs 543 B

12345678910111213141516171819202122
  1. using System.Text.Json.Serialization;
  2. namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
  3. {
  4. /// <summary>
  5. /// Content rating dto.
  6. /// </summary>
  7. public class ContentRatingDto
  8. {
  9. /// <summary>
  10. /// Gets or sets the body.
  11. /// </summary>
  12. [JsonPropertyName("body")]
  13. public string? Body { get; set; }
  14. /// <summary>
  15. /// Gets or sets the code.
  16. /// </summary>
  17. [JsonPropertyName("code")]
  18. public string? Code { get; set; }
  19. }
  20. }