jellyfin/Emby.Naming/AudioBook/AudioBookFilePathParserResult.cs
2019-06-01 11:31:27 +02:00

12 lines
232 B
C#

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