< Summary - Jellyfin

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

#LineLine coverage
 1#nullable disable
 2
 3#pragma warning disable CA2227, CS1591
 4
 5using System;
 6using System.Collections.Generic;
 7using Jellyfin.Data.Enums;
 8
 9namespace MediaBrowser.Controller.Providers
 10{
 11    public class EpisodeInfo : ItemLookupInfo
 12    {
 013        public EpisodeInfo()
 14        {
 015            SeriesProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
 016            SeasonProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
 017        }
 18
 19        public Dictionary<string, string> SeriesProviderIds { get; set; }
 20
 21        public Dictionary<string, string> SeasonProviderIds { get; set; }
 22
 23        public int? IndexNumberEnd { get; set; }
 24
 25        public bool IsMissingEpisode { get; set; }
 26
 27        public string SeriesDisplayOrder { get; set; }
 28    }
 29}

Methods/Properties

.ctor()