using System.Collections.Generic;
using System.Text.Json.Serialization;
namespace MediaBrowser.Model.Entities;
/// 
/// A class representing an parental rating entry.
/// 
public class ParentalRatingEntry
{
    /// 
    /// Gets or sets the rating strings.
    /// 
    [JsonPropertyName("ratingStrings")]
    public required IReadOnlyList RatingStrings { get; set; }
    /// 
    /// Gets or sets the score.
    /// 
    [JsonPropertyName("ratingScore")]
    public required ParentalRatingScore RatingScore { get; set; }
}