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