< Summary - Jellyfin

Information
Class: MediaBrowser.Model.Entities.ParentalRatingScore
Assembly: MediaBrowser.Model
File(s): /srv/git/jellyfin/MediaBrowser.Model/Entities/ParentalRatingScore.cs
Line coverage
100%
Covered lines: 3
Uncovered lines: 0
Coverable lines: 3
Total lines: 32
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor(...)100%11100%

File(s)

/srv/git/jellyfin/MediaBrowser.Model/Entities/ParentalRatingScore.cs

#LineLine coverage
 1using System.Text.Json.Serialization;
 2
 3namespace MediaBrowser.Model.Entities;
 4
 5/// <summary>
 6/// A class representing an parental rating score.
 7/// </summary>
 8public class ParentalRatingScore
 9{
 10    /// <summary>
 11    /// Initializes a new instance of the <see cref="ParentalRatingScore"/> class.
 12    /// </summary>
 13    /// <param name="score">The score.</param>
 14    /// <param name="subScore">The sub score.</param>
 15    public ParentalRatingScore(int score, int? subScore)
 16    {
 959717        Score = score;
 959718        SubScore = subScore;
 959719    }
 20
 21    /// <summary>
 22    /// Gets or sets the score.
 23    /// </summary>
 24    [JsonPropertyName("score")]
 25    public int Score { get; set; }
 26
 27    /// <summary>
 28    /// Gets or sets the sub score.
 29    /// </summary>
 30    [JsonPropertyName("subScore")]
 31    public int? SubScore { get; set; }
 32}