Files
StructureHelper/StructureHelperCommon/Models/Forces/IForceCombinationList.cs
2024-10-27 21:29:50 +05:00

12 lines
274 B
C#

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