aboutsummaryrefslogtreecommitdiff
path: root/Emby.Naming/AudioBook/AudioBookFilePathParserResult.cs
blob: 68d6ca4d467d9087e099b9f027664e5a608a9ae9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma warning disable CS1591
#pragma warning disable SA1600

namespace Emby.Naming.AudioBook
{
    public class AudioBookFilePathParserResult
    {
        public int? PartNumber { get; set; }

        public int? ChapterNumber { get; set; }

        public bool Success { get; set; }
    }
}