#nullable disable using System.Text.Json.Serialization; namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos { /// /// Quality rating dto. /// public class QualityRatingDto { /// /// Gets or sets the ratings body. /// [JsonPropertyName("ratingsBody")] public string RatingsBody { get; set; } /// /// Gets or sets the rating. /// [JsonPropertyName("rating")] public string Rating { get; set; } /// /// Gets or sets the min rating. /// [JsonPropertyName("minRating")] public string MinRating { get; set; } /// /// Gets or sets the max rating. /// [JsonPropertyName("maxRating")] public string MaxRating { get; set; } /// /// Gets or sets the increment. /// [JsonPropertyName("increment")] public string Increment { get; set; } } }