Adds property to [CoreTree] attribute that allows you to set the TreeGroup key - which will be from our constants

This commit is contained in:
Warren Buckley
2018-10-05 13:10:31 +01:00
parent 4ff15fbf04
commit e013545cfc

View File

@@ -11,6 +11,11 @@ namespace Umbraco.Web.Trees
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
internal class CoreTreeAttribute : Attribute
{
public string TreeGroup { get; set; }
public CoreTreeAttribute()
{
}
}
}