< Summary - Jellyfin

Information
Class: MediaBrowser.Model.Dto.BaseItemPerson
Assembly: MediaBrowser.Model
File(s): /srv/git/jellyfin/MediaBrowser.Model/Dto/BaseItemPerson.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 1
Coverable lines: 1
Total lines: 60
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
get_HasPrimaryImage()100%210%

File(s)

/srv/git/jellyfin/MediaBrowser.Model/Dto/BaseItemPerson.cs

#LineLine coverage
 1#nullable disable
 2using System;
 3using System.Collections.Generic;
 4using System.ComponentModel;
 5using System.Text.Json.Serialization;
 6using Jellyfin.Data.Enums;
 7using MediaBrowser.Model.Entities;
 8
 9namespace MediaBrowser.Model.Dto
 10{
 11    /// <summary>
 12    /// This is used by the api to get information about a Person within a BaseItem.
 13    /// </summary>
 14    public class BaseItemPerson
 15    {
 16        /// <summary>
 17        /// Gets or sets the name.
 18        /// </summary>
 19        /// <value>The name.</value>
 20        public string Name { get; set; }
 21
 22        /// <summary>
 23        /// Gets or sets the identifier.
 24        /// </summary>
 25        /// <value>The identifier.</value>
 26        public Guid Id { get; set; }
 27
 28        /// <summary>
 29        /// Gets or sets the role.
 30        /// </summary>
 31        /// <value>The role.</value>
 32        public string Role { get; set; }
 33
 34        /// <summary>
 35        /// Gets or sets the type.
 36        /// </summary>
 37        /// <value>The type.</value>
 38        [DefaultValue(PersonKind.Unknown)]
 39        public PersonKind Type { get; set; }
 40
 41        /// <summary>
 42        /// Gets or sets the primary image tag.
 43        /// </summary>
 44        /// <value>The primary image tag.</value>
 45        public string PrimaryImageTag { get; set; }
 46
 47        /// <summary>
 48        /// Gets or sets the primary image blurhash.
 49        /// </summary>
 50        /// <value>The primary image blurhash.</value>
 51        public Dictionary<ImageType, Dictionary<string, string>> ImageBlurHashes { get; set; }
 52
 53        /// <summary>
 54        /// Gets a value indicating whether this instance has primary image.
 55        /// </summary>
 56        /// <value><c>true</c> if this instance has primary image; otherwise, <c>false</c>.</value>
 57        [JsonIgnore]
 058        public bool HasPrimaryImage => PrimaryImageTag is not null;
 59    }
 60}

Methods/Properties

get_HasPrimaryImage()