12 lines
411 B
C#
12 lines
411 B
C#
using StructureHelperCommon.Infrastructures.Interfaces;
|
|
using StructureHelperCommon.Models;
|
|
using StructureHelperCommon.Models.Calculators;
|
|
|
|
namespace StructureHelperLogics.NdmCalculations.Analyses.ByForces
|
|
{
|
|
public interface ILimitCurvesCalculator : ISaveable, ICalculator, IHasActionByResult
|
|
{
|
|
LimitCurvesCalculatorInputData InputData { get; set; }
|
|
string Name { get; set; }
|
|
}
|
|
} |