jellyfin/Emby.Naming/AudioBook/AudioBookFilePathParserResult.cs
2019-01-13 20:54:44 +01:00

10 lines
230 B
C#

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