using StructureHelperCommon.Infrastructures.Enums; using StructureHelperCommon.Infrastructures.Interfaces; using StructureHelperCommon.Models.Calculators; using StructureHelperCommon.Models.Forces; using StructureHelperCommon.Models.Sections; using StructureHelperLogics.NdmCalculations.Primitives; namespace StructureHelperLogics.NdmCalculations.Analyses.ByForces { public interface IForceCalculatorInputData : IInputData, ISaveable, IHasPrimitives, IHasForceActions { IAccuracy Accuracy { get; set; } List CalcTermsList { get; } ICompressedMember CompressedMember { get; set; } List ForceCombinationLists { get; set; } List LimitStatesList { get; } } }