AudioBookFilePathParserResult.cs 232 B

1234567891011
  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. }