Files
Umbraco-CMS/src/Umbraco.Core/HealthChecks/NotificationMethods/IHealthCheckNotificationMethod.cs

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);
}
}