// // Copyright (c) PlaceholderCompany. All rights reserved. // namespace MediaBrowser.Model.Entities; using global::System.Collections.Generic; using global::System.Text.Json.Serialization; /// /// 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; } }