Resvolution - Booting

This commit is contained in:
Stephan
2016-08-25 15:09:51 +02:00
parent 9949f07a46
commit 9dcc6b285f
48 changed files with 2282 additions and 2753 deletions

View File

@@ -0,0 +1,18 @@
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; }
}
}