mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-30 15:37:55 +02:00
RssItemProcessingProvider will now handle full series NZBs.
This commit is contained in:
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);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user