< Summary - Jellyfin

Information
Class: MediaBrowser.Model.Dto.MetadataEditorInfo
Assembly: MediaBrowser.Model
File(s): /srv/git/jellyfin/MediaBrowser.Model/Dto/MetadataEditorInfo.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 6
Coverable lines: 6
Total lines: 55
Line coverage: 0%
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%210%

File(s)

/srv/git/jellyfin/MediaBrowser.Model/Dto/MetadataEditorInfo.cs

#LineLine coverage
 1using System.Collections.Generic;
 2using Jellyfin.Data.Enums;
 3using MediaBrowser.Model.Entities;
 4using MediaBrowser.Model.Globalization;
 5using MediaBrowser.Model.Providers;
 6
 7namespace MediaBrowser.Model.Dto;
 8
 9/// <summary>
 10/// A class representing metadata editor information.
 11/// </summary>
 12public class MetadataEditorInfo
 13{
 14    /// <summary>
 15    /// Initializes a new instance of the <see cref="MetadataEditorInfo"/> class.
 16    /// </summary>
 17    public MetadataEditorInfo()
 18    {
 019        ParentalRatingOptions = [];
 020        Countries = [];
 021        Cultures = [];
 022        ExternalIdInfos = [];
 023        ContentTypeOptions = [];
 024    }
 25
 26    /// <summary>
 27    /// Gets or sets the parental rating options.
 28    /// </summary>
 29    public IReadOnlyList<ParentalRating> ParentalRatingOptions { get; set; }
 30
 31    /// <summary>
 32    /// Gets or sets the countries.
 33    /// </summary>
 34    public IReadOnlyList<CountryInfo> Countries { get; set; }
 35
 36    /// <summary>
 37    /// Gets or sets the cultures.
 38    /// </summary>
 39    public IReadOnlyList<CultureDto> Cultures { get; set; }
 40
 41    /// <summary>
 42    /// Gets or sets the external id infos.
 43    /// </summary>
 44    public IReadOnlyList<ExternalIdInfo> ExternalIdInfos { get; set; }
 45
 46    /// <summary>
 47    /// Gets or sets the content type.
 48    /// </summary>
 49    public CollectionType? ContentType { get; set; }
 50
 51    /// <summary>
 52    /// Gets or sets the content type options.
 53    /// </summary>
 54    public IReadOnlyList<NameValuePair> ContentTypeOptions { get; set; }
 55}

Methods/Properties

.ctor()