Refactoring TreeNode to inherit from EntityBasic = makes much more sense and makes our models more consistent.

This commit is contained in:
Shannon
2013-11-12 12:30:10 +11:00
parent 635ccc444d
commit acd52d42f4
7 changed files with 17 additions and 38 deletions

View File

@@ -28,7 +28,7 @@ namespace Umbraco.Web.Models.Trees
return new SectionRootNode(nodeId, getChildNodesUrl, menuUrl)
{
Children = children,
Title = title
Name = title
};
}