Files
StructureHelper/StructureHelperCommon/Models/Forces/IForceCombinationList.cs
Evgeny Redikultsev 913d31e04f Export to CSV was added
2022-12-22 21:08:28 +05:00

18 lines
450 B
C#

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