#nullable disable
using System.Text.Json.Serialization;
namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
{
///
/// Rating dto.
///
public class RatingDto
{
///
/// Gets or sets the body.
///
[JsonPropertyName("body")]
public string Body { get; set; }
///
/// Gets or sets the code.
///
[JsonPropertyName("code")]
public string Code { get; set; }
}
}