Files
StructureHelper/StructureHelperCommon/Models/Forces/IForceCombinationList.cs
2023-03-19 17:38:01 +05:00

12 lines
268 B
C#

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