jellyfin/Emby.Naming/AudioBook/AudioBookFilePathParserResult.cs

10 lines
233 B
C#
Raw Normal View History

2019-01-13 20:17:29 +01:00
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; }
}
}