1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-02-19 04:50:43 +00:00
Radarr/NzbDrone.Core/DecisionEngine/IFetchableSpecification.cs

10 lines
No EOL
223 B
C#

using NzbDrone.Core.Model;
namespace NzbDrone.Core.DecisionEngine
{
public interface IFetchableSpecification
{
string RejectionReason { get; }
bool IsSatisfiedBy(EpisodeParseResult subject);
}
}