You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
461 B
19 lines
461 B
namespace Emby.Naming.AudioBook
|
|
{
|
|
/// <summary>
|
|
/// Data object used to pass result of name and year parsing.
|
|
/// </summary>
|
|
public struct AudioBookNameParserResult
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets name of audiobook.
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets optional year of release.
|
|
/// </summary>
|
|
public int? Year { get; set; }
|
|
}
|
|
}
|