using System;
namespace Emby.Naming.Book
{
///
/// Data object used to pass metadata parsed from a book filename.
///
public class BookFileNameParserResult
{
///
/// Initializes a new instance of the class.
///
public BookFileNameParserResult()
{
Name = null;
Index = null;
Year = null;
SeriesName = null;
}
///
/// Gets or sets the name of the book.
///
public string? Name { get; set; }
///
/// Gets or sets the book index.
///
public int? Index { get; set; }
///
/// Gets or sets the publication year.
///
public int? Year { get; set; }
///
/// Gets or sets the series name.
///
public string? SeriesName { get; set; }
}
}