jellyfin-server/Emby.Naming/AudioBook/AudioBookFilePathParserResult.cs

10 lines
230 B
C#
Raw Normal View History

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