< Summary - Jellyfin

Information
Class: MediaBrowser.Model.Configuration.MetadataPluginSummary
Assembly: MediaBrowser.Model
File(s): /srv/git/jellyfin/MediaBrowser.Model/Configuration/MetadataPluginSummary.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 3
Coverable lines: 3
Total lines: 35
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/Configuration/MetadataPluginSummary.cs

#LineLine coverage
 1#nullable disable
 2#pragma warning disable CS1591
 3
 4using System;
 5using MediaBrowser.Model.Entities;
 6
 7namespace MediaBrowser.Model.Configuration
 8{
 9    public class MetadataPluginSummary
 10    {
 11        public MetadataPluginSummary()
 12        {
 013            SupportedImageTypes = Array.Empty<ImageType>();
 014            Plugins = Array.Empty<MetadataPlugin>();
 015        }
 16
 17        /// <summary>
 18        /// Gets or sets the type of the item.
 19        /// </summary>
 20        /// <value>The type of the item.</value>
 21        public string ItemType { get; set; }
 22
 23        /// <summary>
 24        /// Gets or sets the plugins.
 25        /// </summary>
 26        /// <value>The plugins.</value>
 27        public MetadataPlugin[] Plugins { get; set; }
 28
 29        /// <summary>
 30        /// Gets or sets the supported image types.
 31        /// </summary>
 32        /// <value>The supported image types.</value>
 33        public ImageType[] SupportedImageTypes { get; set; }
 34    }
 35}

Methods/Properties

.ctor()