aboutsummaryrefslogtreecommitdiff
path: root/Emby.Naming/AudioBook/AudioBookFilePathParserResult.cs
blob: 3a8e3c31f2f3c2a75f4344585b4c3afcc8e862f2 (plain)
1
2
3
4
5
6
7
8
9
namespace Emby.Naming.AudioBook
{
    public class AudioBookFilePathParserResult
    {
        public int? PartNumber { get; set; }
        public int? ChapterNumber { get; set; }
        public bool Success { get; set; }
    }
}