Files
Umbraco-CMS/src/Umbraco.Web/HealthCheck/HealthCheckAttribute.cs
2017-07-20 11:21:28 +02:00

27 lines
641 B
C#

using System;
namespace Umbraco.Web.HealthCheck
{
/// <summary>
/// Metadata attribute for Health checks
/// </summary>
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
public sealed class HealthCheckAttribute : Attribute
{
public HealthCheckAttribute(string id, string name)
{
Id = new Guid(id);
Name = name;
}
public string Name { get; private set; }
public string Description { get; set; }
public string Group { get; set; }
public Guid Id { get; private set; }
//TODO: Do we need more metadata?
}
}