Files
Umbraco-CMS/src/Umbraco.Web/HealthCheck/NotificationMethods/IHealthCheckNotificationMethod.cs

11 lines
257 B
C#
Raw Normal View History

2017-09-08 19:39:13 +02:00
using System.Threading;
using System.Threading.Tasks;
namespace Umbraco.Web.HealthCheck.NotificationMethods
{
public interface IHealthCheckNotificationMethod
{
Task SendAsync(HealthCheckResults results, CancellationToken token);
}
}