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

        public int? ChapterNumber { get; set; }

        public bool Success { get; set; }
    }
}