jellyfin/Emby.Naming/AudioBook/AudioBookFilePathParserResult.cs

13 lines
239 B
C#
Raw Normal View History

2020-09-20 14:02:41 +02:00
#nullable enable
#pragma warning disable CS1591
namespace Emby.Naming.AudioBook
2018-09-12 19:26:21 +02:00
{
2020-09-20 14:02:41 +02:00
public struct AudioBookFilePathParserResult
2018-09-12 19:26:21 +02:00
{
public int? PartNumber { get; set; }
2019-05-10 20:37:42 +02:00
2018-09-12 19:26:21 +02:00
public int? ChapterNumber { get; set; }
}
}