2019-01-22 09:31:47 +01:00
|
|
|
|
using System.Collections.Generic;
|
2019-01-17 13:20:19 +11:00
|
|
|
|
using Umbraco.Core.Composing;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Web.Trees
|
|
|
|
|
|
{
|
2019-01-22 09:31:47 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Represents the collection of section trees.
|
|
|
|
|
|
/// </summary>
|
2019-01-17 17:33:38 +11:00
|
|
|
|
public class TreeCollection : BuilderCollectionBase<Tree>
|
2019-01-17 13:20:19 +11:00
|
|
|
|
{
|
2019-01-17 17:33:38 +11:00
|
|
|
|
public TreeCollection(IEnumerable<Tree> items)
|
2019-01-17 13:20:19 +11:00
|
|
|
|
: base(items)
|
|
|
|
|
|
{ }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|