< 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: 54
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.Model/Providers/RemoteSearchResult.cs

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

Methods/Properties

.ctor()