mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
RssItemProcessingProvider will now handle full series NZBs.
This commit is contained in:
parent
fd06987331
commit
1076b3ab58
8 changed files with 214 additions and 43 deletions
18
NzbDrone.Core/Model/SeasonParseResult.cs
Normal file
18
NzbDrone.Core/Model/SeasonParseResult.cs
Normal 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);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue