2020-09-20 12:02:41 +00:00
|
|
|
#nullable enable
|
2019-12-13 19:11:37 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 19:54:44 +00:00
|
|
|
namespace Emby.Naming.AudioBook
|
2018-09-12 17:26:21 +00:00
|
|
|
{
|
2020-09-20 12:02:41 +00:00
|
|
|
public struct AudioBookFilePathParserResult
|
2018-09-12 17:26:21 +00:00
|
|
|
{
|
|
|
|
public int? PartNumber { get; set; }
|
2019-05-10 18:37:42 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
public int? ChapterNumber { get; set; }
|
2019-05-10 18:37:42 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
public bool Success { get; set; }
|
|
|
|
}
|
|
|
|
}
|