< Summary - Jellyfin

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

#LineLine coverage
 1#nullable disable
 2
 3#pragma warning disable CS1591
 4
 5using System;
 6using System.Collections.Generic;
 7
 8namespace MediaBrowser.Controller.Providers
 9{
 10    public class SongInfo : ItemLookupInfo
 11    {
 012        public SongInfo()
 13        {
 014            Artists = Array.Empty<string>();
 015            AlbumArtists = Array.Empty<string>();
 016        }
 17
 18        public IReadOnlyList<string> AlbumArtists { get; set; }
 19
 20        public string Album { get; set; }
 21
 22        public IReadOnlyList<string> Artists { get; set; }
 23    }
 24}

Methods/Properties

.ctor()