aboutsummaryrefslogtreecommitdiff
path: root/Emby.Naming/AudioBook/AudioBookFilePathParserResult.cs
blob: 759e7b8ad21800ea33283110ff1ba02cc9820f97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
using System.Collections.Generic;
using System.Text;

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