13 lines
333 B
C#
13 lines
333 B
C#
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Umbraco.Core.Composing;
|
|
|
|
namespace Umbraco.Web.HealthCheck.NotificationMethods
|
|
{
|
|
public interface IHealthCheckNotificationMethod : IDiscoverable
|
|
{
|
|
bool Enabled { get; }
|
|
Task SendAsync(HealthCheckResults results, CancellationToken token);
|
|
}
|
|
}
|