diff options
Diffstat (limited to 'Emby.Naming/AudioBook/AudioBookFilePathParserResult.cs')
| -rw-r--r-- | Emby.Naming/AudioBook/AudioBookFilePathParserResult.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Emby.Naming/AudioBook/AudioBookFilePathParserResult.cs b/Emby.Naming/AudioBook/AudioBookFilePathParserResult.cs new file mode 100644 index 000000000..759e7b8ad --- /dev/null +++ b/Emby.Naming/AudioBook/AudioBookFilePathParserResult.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Emby.Naming.AudioBook +{ + public class AudioBookFilePathParserResult + { + public int? PartNumber { get; set; } + public int? ChapterNumber { get; set; } + public bool Success { get; set; } + } +} |
