< Summary - Jellyfin

Information
Class: Emby.Naming.Book.BookFileNameParserResult
Assembly: Emby.Naming
File(s): /srv/git/jellyfin/Emby.Naming/Book/BookFileNameParserResult.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 5
Coverable lines: 5
Total lines: 41
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 12/14/2025 - 12:12:01 AM Line coverage: 0% (0/5) Total lines: 41

Metrics

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

File(s)

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

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

Methods/Properties

.ctor()