namespace Emby.Naming.AudioBook
{
///
/// Data object used to pass result of name and year parsing.
///
public struct AudioBookNameParserResult
{
///
/// Gets or sets name of audiobook.
///
public string Name { get; set; }
///
/// Gets or sets optional year of release.
///
public int? Year { get; set; }
}
}