mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-20 04:18:51 -07:00
15 lines
282 B
C#
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; }
|
|
}
|
|
}
|