using System.Text.Json.Serialization; namespace Jellyfin.LiveTv.Listings.SchedulesDirectDtos { /// /// Content rating dto. /// public class ContentRatingDto { /// /// Gets or sets the body. /// [JsonPropertyName("body")] public string? Body { get; set; } /// /// Gets or sets the code. /// [JsonPropertyName("code")] public string? Code { get; set; } } }