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