using System.Collections.Generic;
namespace Umbraco.Core.Composing
{
///
/// Represents a builder collection, ie an immutable enumeration of items.
///
/// The type of the items.
public interface IBuilderCollection : IEnumerable
{
///
/// Gets the number of items in the collection.
///
int Count { get; }
}
}