Files
Readarr/src/NzbDrone.Core/Parser/Model/AuthorTitleInfo.cs
T
2020-05-13 20:42:22 -04:00

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; }
}
}