blob: b65d231dfd3886f30b717d564519ae657eefff60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#nullable enable
#pragma warning disable CS1591
namespace Emby.Naming.AudioBook
{
public struct AudioBookFilePathParserResult
{
public int? PartNumber { get; set; }
public int? ChapterNumber { get; set; }
}
}
|