Files
StructureHelper/StructureHelperCommon/Models/Forces/IForceCombinationList.cs
2023-03-05 19:50:24 +05:00

12 lines
281 B
C#

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