2018-06-29 19:52:40 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Web.Models.Trees
|
|
|
|
|
|
{
|
|
|
|
|
|
[CollectionDataContract(Name = "nodes", Namespace = "")]
|
|
|
|
|
|
public sealed class TreeNodeCollection : List<TreeNode>
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|