RssItemProcessingProvider will now handle full series NZBs.

This commit is contained in:
Mark McDowall 2011-03-26 12:16:53 -07:00
commit 1076b3ab58
8 changed files with 214 additions and 43 deletions

View file

@ -0,0 +1,18 @@
using NzbDrone.Core.Repository.Quality;
using SubSonic.SqlGeneration.Schema;
namespace NzbDrone.Core.Model
{
public class SeasonParseResult
{
internal string SeriesTitle { get; set; }
internal int SeasonNumber { get; set; }
internal int Year { get; set; }
public override string ToString()
{
return string.Format("Series:{0} Season:{1}", SeriesTitle, SeasonNumber);
}
}
}