mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 16:53:50 +01:00
11 lines
232 B
C#
11 lines
232 B
C#
namespace Emby.Naming.AudioBook
|
|
{
|
|
public class AudioBookFilePathParserResult
|
|
{
|
|
public int? PartNumber { get; set; }
|
|
|
|
public int? ChapterNumber { get; set; }
|
|
|
|
public bool Success { get; set; }
|
|
}
|
|
}
|