< Summary - Jellyfin

Information
Class: MediaBrowser.Model.Entities.VirtualFolderInfo
Assembly: MediaBrowser.Model
File(s): /srv/git/jellyfin/MediaBrowser.Model/Entities/VirtualFolderInfo.cs
Line coverage
100%
Covered lines: 2
Uncovered lines: 0
Coverable lines: 2
Total lines: 58
Line coverage: 100%
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%11100%

File(s)

/srv/git/jellyfin/MediaBrowser.Model/Entities/VirtualFolderInfo.cs

#LineLine coverage
 1#nullable disable
 2#pragma warning disable CS1591
 3
 4using System;
 5using MediaBrowser.Model.Configuration;
 6
 7namespace MediaBrowser.Model.Entities
 8{
 9    /// <summary>
 10    /// Used to hold information about a user's list of configured virtual folders.
 11    /// </summary>
 12    public class VirtualFolderInfo
 13    {
 14        /// <summary>
 15        /// Initializes a new instance of the <see cref="VirtualFolderInfo"/> class.
 16        /// </summary>
 17        public VirtualFolderInfo()
 18        {
 219            Locations = Array.Empty<string>();
 220        }
 21
 22        /// <summary>
 23        /// Gets or sets the name.
 24        /// </summary>
 25        /// <value>The name.</value>
 26        public string Name { get; set; }
 27
 28        /// <summary>
 29        /// Gets or sets the locations.
 30        /// </summary>
 31        /// <value>The locations.</value>
 32        public string[] Locations { get; set; }
 33
 34        /// <summary>
 35        /// Gets or sets the type of the collection.
 36        /// </summary>
 37        /// <value>The type of the collection.</value>
 38        public CollectionTypeOptions? CollectionType { get; set; }
 39
 40        public LibraryOptions LibraryOptions { get; set; }
 41
 42        /// <summary>
 43        /// Gets or sets the item identifier.
 44        /// </summary>
 45        /// <value>The item identifier.</value>
 46        public string ItemId { get; set; }
 47
 48        /// <summary>
 49        /// Gets or sets the primary image item identifier.
 50        /// </summary>
 51        /// <value>The primary image item identifier.</value>
 52        public string PrimaryImageItemId { get; set; }
 53
 54        public double? RefreshProgress { get; set; }
 55
 56        public string RefreshStatus { get; set; }
 57    }
 58}

Methods/Properties

.ctor()