mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-22 23:50:24 +01: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; }
|
|
}
|
|
}
|