mirror of https://github.com/Radarr/Radarr
8 lines
148 B
C#
8 lines
148 B
C#
|
namespace NzbDrone.Core.HealthCheck
|
||
|
{
|
||
|
public interface ICheckOnCondition<TEvent>
|
||
|
{
|
||
|
bool ShouldCheckOnEvent(TEvent message);
|
||
|
}
|
||
|
}
|