namespace Umbraco.Core.Composing { /// /// Represents a collection builder. /// /// The type of the collection. /// The type of the items. public interface ICollectionBuilder where TCollection : IBuilderCollection { /// /// Creates a collection. /// /// A collection. /// Creates a new collection each time it is invoked. TCollection CreateCollection(); } }