mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
Added partial season searching when a full season NZB is not available.
This commit is contained in:
parent
fbb4ced77c
commit
35cad3d27e
12 changed files with 510 additions and 20 deletions
|
@ -10,6 +10,7 @@ namespace NzbDrone.Core.Model.Search
|
|||
public string SeriesTitle { get; set; }
|
||||
public int EpisodeNumber { get; set; }
|
||||
public int SeasonNumber { get; set; }
|
||||
public int EpisodePrefix { get; set; }
|
||||
public DateTime AirDate { get; set; }
|
||||
public SearchType SearchType { get; set; }
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@ namespace NzbDrone.Core.Model.Search
|
|||
{
|
||||
EpisodeSearch = 0,
|
||||
DailySearch = 1,
|
||||
SeasonSearch = 2
|
||||
PartialSeasonSearch = 2,
|
||||
SeasonSearch = 3
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue