< Summary - Jellyfin

Information
Class: Emby.Naming.Book.BookFileNameParserResult
Assembly: Emby.Naming
File(s): /srv/git/jellyfin/Emby.Naming/Book/BookFileNameParserResult.cs
Line coverage
100%
Covered lines: 6
Uncovered lines: 0
Coverable lines: 6
Total lines: 45
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 3/26/2026 - 12:14:14 AM Line coverage: 0% (0/5) Total lines: 416/18/2026 - 12:16:24 AM Line coverage: 100% (6/6) Total lines: 45

Coverage delta

Coverage delta 100 -100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor()100%11100%

File(s)

/srv/git/jellyfin/Emby.Naming/Book/BookFileNameParserResult.cs

#LineLine coverage
 1namespace Emby.Naming.Book
 2{
 3    /// <summary>
 4    /// Data object used to pass metadata parsed from a book filename.
 5    /// </summary>
 6    public class BookFileNameParserResult
 7    {
 8        /// <summary>
 9        /// Initializes a new instance of the <see cref="BookFileNameParserResult"/> class.
 10        /// </summary>
 11        public BookFileNameParserResult()
 12        {
 1913            Name = null;
 1914            Index = null;
 1915            ParentIndex = null;
 1916            Year = null;
 1917            SeriesName = null;
 1918        }
 19
 20        /// <summary>
 21        /// Gets or sets the name of the book.
 22        /// </summary>
 23        public string? Name { get; set; }
 24
 25        /// <summary>
 26        /// Gets or sets the book index.
 27        /// </summary>
 28        public int? Index { get; set; }
 29
 30        /// <summary>
 31        /// Gets or sets the parent index number.
 32        /// </summary>
 33        public int? ParentIndex { get; set; }
 34
 35        /// <summary>
 36        /// Gets or sets the publication year.
 37        /// </summary>
 38        public int? Year { get; set; }
 39
 40        /// <summary>
 41        /// Gets or sets the series name.
 42        /// </summary>
 43        public string? SeriesName { get; set; }
 44    }
 45}

Methods/Properties

.ctor()