Files
StructureHelper/StructureHelperCommon/Models/Forces/IForceCombinationList.cs
2022-11-27 17:04:34 +05:00

17 lines
391 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
{
string Name { get; set; }
Point2D ForcePoint {get ;}
List<IDesignForceTuple> DesignForces { get; }
}
}