2013-11-07 17:16:22 +01:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Web.Models.Trees
|
|
|
|
|
|
{
|
|
|
|
|
|
[CollectionDataContract(Name = "nodes", Namespace = "")]
|
|
|
|
|
|
public sealed class TreeNodeCollection : List<TreeNode>
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
2017-07-20 11:21:28 +02:00
|
|
|
|
}
|