AudioBookNameParserResult.cs 461 B

123456789101112131415161718
  1. namespace Emby.Naming.AudioBook
  2. {
  3. /// <summary>
  4. /// Data object used to pass result of name and year parsing.
  5. /// </summary>
  6. public struct AudioBookNameParserResult
  7. {
  8. /// <summary>
  9. /// Gets or sets name of audiobook.
  10. /// </summary>
  11. public string Name { get; set; }
  12. /// <summary>
  13. /// Gets or sets optional year of release.
  14. /// </summary>
  15. public int? Year { get; set; }
  16. }
  17. }