You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.1 KiB
43 lines
1.1 KiB
#nullable disable
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
|
|
{
|
|
/// <summary>
|
|
/// Quality rating dto.
|
|
/// </summary>
|
|
public class QualityRatingDto
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the ratings body.
|
|
/// </summary>
|
|
[JsonPropertyName("ratingsBody")]
|
|
public string RatingsBody { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the rating.
|
|
/// </summary>
|
|
[JsonPropertyName("rating")]
|
|
public string Rating { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the min rating.
|
|
/// </summary>
|
|
[JsonPropertyName("minRating")]
|
|
public string MinRating { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the max rating.
|
|
/// </summary>
|
|
[JsonPropertyName("maxRating")]
|
|
public string MaxRating { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the increment.
|
|
/// </summary>
|
|
[JsonPropertyName("increment")]
|
|
public string Increment { get; set; }
|
|
}
|
|
}
|