< Summary - Jellyfin

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

#LineLine coverage
 1#pragma warning disable CA2227, CS1591
 2#nullable disable
 3
 4using System;
 5using System.Collections.Generic;
 6
 7namespace MediaBrowser.Controller.Providers
 8{
 9    public class SeasonInfo : ItemLookupInfo
 10    {
 011        public SeasonInfo()
 12        {
 013            SeriesProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
 014        }
 15
 16        public Dictionary<string, string> SeriesProviderIds { get; set; }
 17
 18        public string SeriesDisplayOrder { get; set; }
 19    }
 20}

Methods/Properties

.ctor()