mirror of https://github.com/Radarr/Radarr
20 lines
587 B
C#
20 lines
587 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.DecisionEngine;
|
|
|
|
namespace NzbDrone.Core.Download
|
|
{
|
|
public class ProcessedDecisions
|
|
{
|
|
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, List<DownloadDecision> rejected)
|
|
{
|
|
Grabbed = grabbed;
|
|
Pending = pending;
|
|
Rejected = rejected;
|
|
}
|
|
}
|
|
}
|