Sonarr/NzbDrone.Core/DecisionEngine/DownloadDecision.cs

26 lines
632 B
C#
Raw Normal View History

2013-03-07 01:51:47 +00:00
using System.Collections.Generic;
using System.Linq;
using NzbDrone.Core.Parser.Model;
2013-03-07 01:51:47 +00:00
namespace NzbDrone.Core.DecisionEngine
{
public class DownloadDecision
{
public RemoteEpisode RemoteEpisode { get; private set; }
2013-03-07 01:51:47 +00:00
public IEnumerable<string> Rejections { get; private set; }
2013-04-07 07:30:37 +00:00
2013-03-07 01:51:47 +00:00
public bool Approved
{
get
{
return !Rejections.Any();
}
}
public DownloadDecision(RemoteEpisode episode, params string[] rejections)
2013-03-07 01:51:47 +00:00
{
RemoteEpisode = episode;
2013-03-07 01:51:47 +00:00
Rejections = rejections.ToList();
}
}
}