jellyfin/Emby.Naming/AudioBook/AudioBookFilePathParserResu...

14 lines
264 B
C#

#pragma warning disable CS1591
namespace Emby.Naming.AudioBook
{
public class AudioBookFilePathParserResult
{
public int? PartNumber { get; set; }
public int? ChapterNumber { get; set; }
public bool Success { get; set; }
}
}