Files
Umbraco-CMS/src/Umbraco.Core/Trees/TreeCollection.cs
2020-02-24 08:21:53 +01:00

16 lines
356 B
C#

using System.Collections.Generic;
using Umbraco.Core.Composing;
namespace Umbraco.Web.Trees
{
/// <summary>
/// Represents the collection of section trees.
/// </summary>
public class TreeCollection : BuilderCollectionBase<Tree>
{
public TreeCollection(IEnumerable<Tree> items)
: base(items)
{ }
}
}