Rename DependencyInjection into DI, cleanup components, compose
This commit is contained in:
13
src/Umbraco.Core/Components/RuntimeLevelAttribute.cs
Normal file
13
src/Umbraco.Core/Components/RuntimeLevelAttribute.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
|
||||
namespace Umbraco.Core.Components
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Class /*, AllowMultiple = false, Inherited = true*/)]
|
||||
public class RuntimeLevelAttribute : Attribute
|
||||
{
|
||||
//public RuntimeLevelAttribute()
|
||||
//{ }
|
||||
|
||||
public RuntimeLevel MinLevel { get; set; } = RuntimeLevel.Boot;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user