10 lines
233 B
C#
10 lines
233 B
C#
namespace Emby.Naming.AudioBook
|
|
{
|
|
public class AudioBookFilePathParserResult
|
|
{
|
|
public int? PartNumber { get; set; }
|
|
public int? ChapterNumber { get; set; }
|
|
public bool Success { get; set; }
|
|
}
|
|
}
|