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