jellyfin/Emby.Naming/AudioBook/AudioBookNameParserResult.cs

13 lines
222 B
C#
Raw Normal View History

#nullable enable
#pragma warning disable CS1591
namespace Emby.Naming.AudioBook
{
public struct AudioBookNameParserResult
{
public string Name { get; set; }
public int? Year { get; set; }
}
}