2013-03-07 00:19:49 +00:00
|
|
|
using NzbDrone.Core.Model;
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.DecisionEngine
|
|
|
|
{
|
2013-04-07 07:30:37 +00:00
|
|
|
public interface IDecisionEngineSpecification : IRejectWithReason
|
2013-03-07 00:19:49 +00:00
|
|
|
{
|
|
|
|
bool IsSatisfiedBy(EpisodeParseResult subject);
|
|
|
|
}
|
|
|
|
}
|