Files
Umbraco-CMS/src/Umbraco.Core/Components/DisableComponentAttribute.cs
2016-09-19 16:33:39 +02:00

19 lines
429 B
C#

using System;
namespace Umbraco.Core.Components
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true, Inherited = false)]
public class DisableComponentAttribute : Attribute
{
public DisableComponentAttribute()
{ }
public DisableComponentAttribute(Type disabledType)
{
DisabledType = disabledType;
}
public Type DisabledType { get; }
}
}