jellyfin/Emby.Naming/AudioBook/AudioBookNameParserResult.cs

19 lines
461 B
C#
Raw Normal View History

namespace Emby.Naming.AudioBook
{
2020-11-10 17:11:48 +01:00
/// <summary>
/// Data object used to pass result of name and year parsing.
/// </summary>
public struct AudioBookNameParserResult
{
2020-11-10 17:11:48 +01:00
/// <summary>
/// Gets or sets name of audiobook.
/// </summary>
public string Name { get; set; }
2020-11-10 17:11:48 +01:00
/// <summary>
/// Gets or sets optional year of release.
/// </summary>
public int? Year { get; set; }
}
}