jellyfin/Emby.Naming/AudioBook/AudioBookFilePathParserResult.cs

10 lines
230 B
C#
Raw Normal View History

namespace Emby.Naming.AudioBook
2018-09-12 19:26:21 +02:00
{
public class AudioBookFilePathParserResult
{
public int? PartNumber { get; set; }
public int? ChapterNumber { get; set; }
public bool Success { get; set; }
}
}