namespace Netron.Diagramming.Core { /// /// A complex shape is just an IShape with children /// public interface IComplexShape : IShape { /// /// Gets or sets the children. /// /// The children. CollectionBase Children { get; set; } } }