Files
Umbraco-CMS/src/Umbraco.Web/Trees/CoreTreeAttribute.cs
2019-01-22 13:55:31 +01:00

15 lines
430 B
C#

using System;
namespace Umbraco.Web.Trees
{
/// <summary>
/// Indicates that a tree is a core tree and should not be treated as a plugin tree.
/// </summary>
/// <remarks>
/// This ensures that umbraco will look in the umbraco folders for views for this tree.
/// </remarks>
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
internal class CoreTreeAttribute : Attribute
{ }
}