mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-30 19:50:15 -07:00
14 lines
403 B
C#
14 lines
403 B
C#
namespace NzbDrone.Core.HealthCheck
|
|
{
|
|
public class EventDrivenHealthCheck
|
|
{
|
|
public IProvideHealthCheck HealthCheck { get; set; }
|
|
public CheckOnCondition Condition { get; set; }
|
|
|
|
public EventDrivenHealthCheck(IProvideHealthCheck healthCheck, CheckOnCondition condition)
|
|
{
|
|
HealthCheck = healthCheck;
|
|
Condition = condition;
|
|
}
|
|
}
|
|
}
|