Files
Umbraco-CMS/src/Umbraco.Core/Components/DisableComponentAttribute.cs

19 lines
429 B
C#
Raw Normal View History

2016-08-25 15:09:51 +02:00
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; }
}
}