jellyfin/Emby.Naming/AudioBook/AudioBookFilePathParserResult.cs
2020-09-20 14:02:41 +02:00

15 lines
282 B
C#

#nullable enable
#pragma warning disable CS1591
namespace Emby.Naming.AudioBook
{
public struct AudioBookFilePathParserResult
{
public int? PartNumber { get; set; }
public int? ChapterNumber { get; set; }
public bool Success { get; set; }
}
}