mirror of https://github.com/lidarr/Lidarr
22 lines
472 B
C#
22 lines
472 B
C#
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
|
||
|
namespace NzbDrone.Core.DecisionEngine
|
||
|
{
|
||
|
public class DownloadDecision
|
||
|
{
|
||
|
public IEnumerable<string> Rejections { get; private set; }
|
||
|
public bool Approved
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
return !Rejections.Any();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public DownloadDecision(params string[] rejections)
|
||
|
{
|
||
|
Rejections = rejections.ToList();
|
||
|
}
|
||
|
}
|
||
|
}
|