Moved more stuff into Abstractions

This commit is contained in:
Bjarke Berg
2019-05-28 08:32:01 +02:00
parent 7aca2e3217
commit 1fe02af841
68 changed files with 40 additions and 105 deletions

View File

@@ -0,0 +1,16 @@
using System.Collections.Generic;
namespace Umbraco.Core.Composing
{
/// <summary>
/// Represents a builder collection, ie an immutable enumeration of items.
/// </summary>
/// <typeparam name="TItem">The type of the items.</typeparam>
public interface IBuilderCollection<out TItem> : IEnumerable<TItem>
{
/// <summary>
/// Gets the number of items in the collection.
/// </summary>
int Count { get; }
}
}