2013-05-30 21:21:52 -10:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Runtime.Serialization;
|
2013-06-02 17:09:16 -10:00
|
|
|
|
using Newtonsoft.Json.Linq;
|
2013-05-30 21:21:52 -10:00
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Web.Trees
|
|
|
|
|
|
{
|
|
|
|
|
|
[CollectionDataContract(Name = "nodes", Namespace = "")]
|
2013-07-15 17:56:34 +10:00
|
|
|
|
public sealed class TreeNodeCollection : List<TreeNode>
|
|
|
|
|
|
{
|
2013-05-30 21:21:52 -10:00
|
|
|
|
}
|
|
|
|
|
|
}
|