Files
Umbraco-CMS/src/Umbraco.Abstractions/Trees/TreeCollection.cs
T
Bjarke Berg 3b7825b30d Netcore: Moves services and dependencies from Web to Abstractions (#7497)
* Moves the services and dependencies from web,

* Fix bug with Empty collection not being a property (new one for each access)

* remvoed moved files from web csproj

* Fix spelling
2020-01-27 09:31:24 +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)
{ }
}
}