mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-18 15:03:06 +03:00
13 lines
222 B
C#
13 lines
222 B
C#
|
|
#nullable enable
|
||
|
|
#pragma warning disable CS1591
|
||
|
|
|
||
|
|
namespace Emby.Naming.AudioBook
|
||
|
|
{
|
||
|
|
public struct AudioBookNameParserResult
|
||
|
|
{
|
||
|
|
public string Name { get; set; }
|
||
|
|
|
||
|
|
public int? Year { get; set; }
|
||
|
|
}
|
||
|
|
}
|