using StructureHelperCommon.Infrastructures.Interfaces; using StructureHelperCommon.Models.Calculators; using StructureHelperCommon.Models.Forces; using StructureHelperLogics.NdmCalculations.Primitives; namespace StructureHelperLogics.NdmCalculations.Cracking { public interface ICrackCalculatorInputData : IInputData, IHasPrimitives, IHasForceActions, ISaveable { List ForceActions { get; } List Primitives { get; } IUserCrackInputData UserCrackInputData { get; set; } } }