jellyfin/Emby.Naming/AudioBook/AudioBookFilePathParserResult.cs

10 lines
233 B
C#
Raw Normal View History

2019-01-13 14:17:29 -05:00
namespace Emby.Naming.AudioBook
2018-09-12 13:26:21 -04:00
{
public class AudioBookFilePathParserResult
{
public int? PartNumber { get; set; }
public int? ChapterNumber { get; set; }
public bool Success { get; set; }
}
}