AudioBookFilePathParserResult.cs 264 B

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