Files
Umbraco-CMS/src/Umbraco.Core/Configuration/HealthChecks/INotificationMethod.cs
2017-08-14 18:21:48 +02:00

14 lines
382 B
C#

using System.Collections.Generic;
namespace Umbraco.Core.Configuration.HealthChecks
{
public interface INotificationMethod
{
string Alias { get; }
bool Enabled { get; }
HealthCheckNotificationVerbosity Verbosity { get; }
bool FailureOnly { get; }
IReadOnlyDictionary<string, INotificationMethodSettings> Settings { get; }
}
}