jellyfin/Emby.Naming/AudioBook/AudioBookFilePathParserResult.cs

15 lines
295 B
C#
Raw Normal View History

#pragma warning disable CS1591
#pragma warning disable SA1600
namespace Emby.Naming.AudioBook
2018-09-12 17:26:21 +00:00
{
public class AudioBookFilePathParserResult
{
public int? PartNumber { get; set; }
2019-05-10 18:37:42 +00:00
2018-09-12 17:26:21 +00:00
public int? ChapterNumber { get; set; }
2019-05-10 18:37:42 +00:00
2018-09-12 17:26:21 +00:00
public bool Success { get; set; }
}
}