Files
Umbraco-CMS/src/Umbraco.Web/HealthCheck/IHealthCheckNotificationMethodsResolver.cs
2018-11-22 14:05:51 +00:00

10 lines
279 B
C#

using System.Collections.Generic;
using Umbraco.Web.HealthCheck.NotificationMethods;
namespace Umbraco.Web.HealthCheck
{
public interface IHealthCheckNotificationMethodsResolver
{
IEnumerable<IHealthCheckNotificatationMethod> NotificationMethods { get; }
}
}