AudioBookFilePathParserResult.cs 282 B

1234567891011121314
  1. #nullable enable
  2. #pragma warning disable CS1591
  3. namespace Emby.Naming.AudioBook
  4. {
  5. public struct AudioBookFilePathParserResult
  6. {
  7. public int? PartNumber { get; set; }
  8. public int? ChapterNumber { get; set; }
  9. public bool Success { get; set; }
  10. }
  11. }