< Summary - Jellyfin

Information
Class: MediaBrowser.Model.Providers.ExternalIdInfo
Assembly: MediaBrowser.Model
File(s): /srv/git/jellyfin/MediaBrowser.Model/Providers/ExternalIdInfo.cs
Line coverage
100%
Covered lines: 4
Uncovered lines: 0
Coverable lines: 4
Total lines: 44
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/Providers/ExternalIdInfo.cs

#LineLine coverage
 1namespace MediaBrowser.Model.Providers
 2{
 3    /// <summary>
 4    /// Represents the external id information for serialization to the client.
 5    /// </summary>
 6    public class ExternalIdInfo
 7    {
 8        /// <summary>
 9        /// Initializes a new instance of the <see cref="ExternalIdInfo"/> class.
 10        /// </summary>
 11        /// <param name="name">Name of the external id provider (IE: IMDB, MusicBrainz, etc).</param>
 12        /// <param name="key">Key for this id. This key should be unique across all providers.</param>
 13        /// <param name="type">Specific media type for this id.</param>
 14        public ExternalIdInfo(string name, string key, ExternalIdMediaType? type)
 15        {
 2016            Name = name;
 2017            Key = key;
 2018            Type = type;
 2019        }
 20
 21        /// <summary>
 22        /// Gets or sets the display name of the external id provider (IE: IMDB, MusicBrainz, etc).
 23        /// </summary>
 24        // TODO: This should be renamed to ProviderName
 25        public string Name { get; set; }
 26
 27        /// <summary>
 28        /// Gets or sets the unique key for this id. This key should be unique across all providers.
 29        /// </summary>
 30        // TODO: This property is not actually unique across the concrete types at the moment. It should be updated to b
 31        public string Key { get; set; }
 32
 33        /// <summary>
 34        /// Gets or sets the specific media type for this id. This is used to distinguish between the different
 35        /// external id types for providers with multiple ids.
 36        /// A null value indicates there is no specific media type associated with the external id, or this is the
 37        /// default id for the external provider so there is no need to specify a type.
 38        /// </summary>
 39        /// <remarks>
 40        /// This can be used along with the <see cref="Name"/> to localize the external id on the client.
 41        /// </remarks>
 42        public ExternalIdMediaType? Type { get; set; }
 43    }
 44}