Port 7.7 - WIP

This commit is contained in:
Stephan
2017-09-08 19:39:13 +02:00
parent 00d2ea928d
commit 1c96df83cd
99 changed files with 9987 additions and 909 deletions

View File

@@ -0,0 +1,18 @@
using System;
namespace Umbraco.Web.HealthCheck
{
/// <summary>
/// Metadata attribute for health check notification methods
/// </summary>
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
public sealed class HealthCheckNotificationMethodAttribute : Attribute
{
public HealthCheckNotificationMethodAttribute(string alias)
{
Alias = alias;
}
public string Alias { get; }
}
}