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