#nullable disable using System.Text.Json.Serialization; namespace Emby.Server.Implementations.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; } } }