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

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

        public int? ChapterNumber { get; set; }

        public bool Success { get; set; }
    }
}