Files
Umbraco-CMS/src/Umbraco.Web/HealthCheck/HealthCheckAttribute.cs
Sebastiaan Janssen d83d7956bb Dev v7 health check (#1220)
Adds health check feature including some initial checks
2016-06-13 17:42:05 +02:00

26 lines
645 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?
}
}