20 lines
481 B
C#
20 lines
481 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
using Umbraco.Core.Composing;
|
|||
|
|
using Umbraco.Core.Models;
|
|||
|
|
using Umbraco.Core.Models.ContentEditing;
|
|||
|
|
using Umbraco.Web.Models.ContentEditing;
|
|||
|
|
|
|||
|
|
namespace Umbraco.Web.Trees
|
|||
|
|
{
|
|||
|
|
public class TreeCollection : BuilderCollectionBase<ApplicationTree>
|
|||
|
|
{
|
|||
|
|
public TreeCollection(IEnumerable<ApplicationTree> items)
|
|||
|
|
: base(items)
|
|||
|
|
{ }
|
|||
|
|
}
|
|||
|
|
}
|