2018-06-29 19:52:40 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Web.Trees
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
2019-01-22 09:31:47 +01:00
|
|
|
|
/// Indicates that a tree is a core tree and should not be treated as a plugin tree.
|
2018-06-29 19:52:40 +02:00
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <remarks>
|
2019-01-22 09:31:47 +01:00
|
|
|
|
/// This ensures that umbraco will look in the umbraco folders for views for this tree.
|
2018-06-29 19:52:40 +02:00
|
|
|
|
/// </remarks>
|
|
|
|
|
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
|
|
|
|
|
|
internal class CoreTreeAttribute : Attribute
|
2019-01-22 09:31:47 +01:00
|
|
|
|
{ }
|
2018-06-29 19:52:40 +02:00
|
|
|
|
}
|