< Summary - Jellyfin

Information
Class: MediaBrowser.Controller.Providers.AlbumInfo
Assembly: MediaBrowser.Controller
File(s): /srv/git/jellyfin/MediaBrowser.Controller/Providers/AlbumInfo.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 5
Coverable lines: 5
Total lines: 31
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.Controller/Providers/AlbumInfo.cs

#LineLine coverage
 1#pragma warning disable CA1002, CA2227, CS1591
 2
 3using System;
 4using System.Collections.Generic;
 5
 6namespace MediaBrowser.Controller.Providers
 7{
 8    public class AlbumInfo : ItemLookupInfo
 9    {
 010        public AlbumInfo()
 11        {
 012            ArtistProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
 013            SongInfos = new List<SongInfo>();
 014            AlbumArtists = Array.Empty<string>();
 015        }
 16
 17        /// <summary>
 18        /// Gets or sets the album artist.
 19        /// </summary>
 20        /// <value>The album artist.</value>
 21        public IReadOnlyList<string> AlbumArtists { get; set; }
 22
 23        /// <summary>
 24        /// Gets or sets the artist provider ids.
 25        /// </summary>
 26        /// <value>The artist provider ids.</value>
 27        public Dictionary<string, string> ArtistProviderIds { get; set; }
 28
 29        public List<SongInfo> SongInfos { get; set; }
 30    }
 31}

Methods/Properties

.ctor()