mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-25 22:37:27 -04:00
Queue actions
New: Remove items from queue/history from Activity New: Force import of series title mismatch from Activity
This commit is contained in:
@@ -7,11 +7,13 @@ namespace NzbDrone.Core.Download
|
||||
{
|
||||
public List<DownloadDecision> Grabbed { get; set; }
|
||||
public List<DownloadDecision> Pending { get; set; }
|
||||
public List<DownloadDecision> Rejected { get; set; }
|
||||
|
||||
public ProcessedDecisions(List<DownloadDecision> grabbed, List<DownloadDecision> pending)
|
||||
public ProcessedDecisions(List<DownloadDecision> grabbed, List<DownloadDecision> pending, List<DownloadDecision> rejected)
|
||||
{
|
||||
Grabbed = grabbed;
|
||||
Pending = pending;
|
||||
Rejected = rejected;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user