using System; using System.Collections.Generic; using StructureHelperCommon.Models.Shapes; namespace StructureHelperCommon.Models.Forces { public interface IForceCombinationList : IForceAction { List DesignForces { get;} } }