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

13 lines
287 B
C#
Raw Normal View History

using System.Threading.Tasks;
2018-12-21 13:42:24 +01:00
using Umbraco.Core.Composing;
2017-09-08 19:39:13 +02:00
namespace Umbraco.Core.HealthChecks.NotificationMethods
2017-09-08 19:39:13 +02:00
{
2018-12-21 13:42:24 +01:00
public interface IHealthCheckNotificationMethod : IDiscoverable
2017-09-08 19:39:13 +02:00
{
2017-09-19 15:51:47 +02:00
bool Enabled { get; }
Task SendAsync(HealthCheckResults results);
2017-09-08 19:39:13 +02:00
}
}