using StructureHelperCommon.Infrastructures.Enums; using StructureHelperCommon.Models.Calculators; using StructureHelperCommon.Models.Parameters; using StructureHelperLogics.NdmCalculations.Primitives; namespace StructureHelperLogics.NdmCalculations.Analyses.ByForces { public interface ILimitCurvesCalculatorInputData : IInputData, ICloneable { List CalcTerms { get; } List LimitStates { get; } int PointCount { get; set; } List PredicateEntries { get; } List> PrimitiveSeries { get; } ISurroundData SurroundData { get; set; } } }