< Summary - Jellyfin

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

#LineLine coverage
 1#pragma warning disable CS1591
 2
 3namespace MediaBrowser.Model.Configuration
 4{
 5    public class XbmcMetadataOptions
 6    {
 7        public XbmcMetadataOptions()
 8        {
 299            ReleaseDateFormat = "yyyy-MM-dd";
 10
 2911            SaveImagePathsInNfo = true;
 2912            EnablePathSubstitution = true;
 2913        }
 14
 15        public string? UserId { get; set; }
 16
 17        public string ReleaseDateFormat { get; set; }
 18
 19        public bool SaveImagePathsInNfo { get; set; }
 20
 21        public bool EnablePathSubstitution { get; set; }
 22
 23        public bool EnableExtraThumbsDuplication { get; set; }
 24    }
 25}

Methods/Properties

.ctor()