mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-27 22:56:45 -04:00
8547af9fae
Co-Authored-By: ta264 <ta264@users.noreply.github.com>
10 lines
222 B
C#
10 lines
222 B
C#
namespace NzbDrone.Core.Parser.Model
|
|
{
|
|
public class AuthorTitleInfo
|
|
{
|
|
public string Title { get; set; }
|
|
public string TitleWithoutYear { get; set; }
|
|
public int Year { get; set; }
|
|
}
|
|
}
|