AudioBookFilePathParserResult.cs 230 B

123456789
  1. namespace Emby.Naming.AudioBook
  2. {
  3. public class AudioBookFilePathParserResult
  4. {
  5. public int? PartNumber { get; set; }
  6. public int? ChapterNumber { get; set; }
  7. public bool Success { get; set; }
  8. }
  9. }