1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-03-12 15:15:54 +00:00
Radarr/NzbDrone.Core/DecisionEngine/DownloadDecision.cs

22 lines
472 B
C#
Raw Normal View History

2013-03-06 17:51:47 -08:00
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();
}
}
}