< Summary - Jellyfin

Information
Class: MediaBrowser.Model.Providers.RemoteSearchResult
Assembly: MediaBrowser.Model
File(s): /srv/git/jellyfin/MediaBrowser.Model/Providers/RemoteSearchResult.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 3
Coverable lines: 3
Total lines: 53
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 11/15/2025 - 12:10:12 AM Line coverage: 0% (0/3) Total lines: 542/19/2026 - 12:13:41 AM Line coverage: 0% (0/3) Total lines: 53

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor()100%210%

File(s)

/srv/git/jellyfin/MediaBrowser.Model/Providers/RemoteSearchResult.cs

#LineLine coverage
 1#pragma warning disable CS1591
 2
 3using System;
 4using System.Collections.Generic;
 5using MediaBrowser.Model.Entities;
 6
 7namespace MediaBrowser.Model.Providers
 8{
 9    public class RemoteSearchResult : IHasProviderIds
 10    {
 11        public RemoteSearchResult()
 12        {
 013            ProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
 014            Artists = Array.Empty<RemoteSearchResult>();
 015        }
 16
 17        /// <summary>
 18        /// Gets or sets the name.
 19        /// </summary>
 20        /// <value>The name.</value>
 21        public string? Name { get; set; }
 22
 23        /// <summary>
 24        /// Gets or sets the provider ids.
 25        /// </summary>
 26        /// <value>The provider ids.</value>
 27        public Dictionary<string, string> ProviderIds { get; set; }
 28
 29        /// <summary>
 30        /// Gets or sets the year.
 31        /// </summary>
 32        /// <value>The year.</value>
 33        public int? ProductionYear { get; set; }
 34
 35        public int? IndexNumber { get; set; }
 36
 37        public int? IndexNumberEnd { get; set; }
 38
 39        public int? ParentIndexNumber { get; set; }
 40
 41        public DateTime? PremiereDate { get; set; }
 42
 43        public string? ImageUrl { get; set; }
 44
 45        public string? SearchProviderName { get; set; }
 46
 47        public string? Overview { get; set; }
 48
 49        public RemoteSearchResult? AlbumArtist { get; set; }
 50
 51        public RemoteSearchResult[] Artists { get; set; }
 52    }
 53}

Methods/Properties

.ctor()