namespace Emby.Naming.AudioBook
{
///
/// Data object for passing result of audiobook part/chapter extraction.
///
public struct AudioBookFilePathParserResult
{
///
/// Gets or sets optional number of path extracted from audiobook filename.
///
public int? PartNumber { get; set; }
///
/// Gets or sets optional number of chapter extracted from audiobook filename.
///
public int? ChapterNumber { get; set; }
}
}