namespace Umbraco.Cms.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. /// /// /// The count. /// int Count { get; } }