Files
StructureHelper/StructureHelperCommon/Models/Forces/IForceCombinationList.cs
2023-02-12 23:38:24 +05:00

15 lines
382 B
C#

using System;
using System.Collections.Generic;
using StructureHelperCommon.Models.Shapes;
namespace StructureHelperCommon.Models.Forces
{
public interface IForceCombinationList : ICloneable
{
string Name { get; set; }
bool SetInGravityCenter { get; set; }
Point2D ForcePoint {get ;}
List<IDesignForceTuple> DesignForces { get; }
}
}