mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07:00
12 lines
232 B
C#
12 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; }
|
|
}
|
|
}
|