Moves tree/menu models into the Models.Trees namespace

This commit is contained in:
Shannon
2013-10-08 12:38:27 +11:00
parent e6908c7678
commit 883a662240
31 changed files with 575 additions and 570 deletions

View File

@@ -0,0 +1,10 @@
using System.Collections.Generic;
using System.Runtime.Serialization;
namespace Umbraco.Web.Models.Trees
{
[CollectionDataContract(Name = "nodes", Namespace = "")]
public sealed class TreeNodeCollection : List<TreeNode>
{
}
}