AudioBookFilePathParserResult.cs 301 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Emby.Naming.AudioBook
  5. {
  6. public class AudioBookFilePathParserResult
  7. {
  8. public int? PartNumber { get; set; }
  9. public int? ChapterNumber { get; set; }
  10. public bool Success { get; set; }
  11. }
  12. }