9 lines
249 B
C#
9 lines
249 B
C#
using StructureHelperCommon.Models.Calculators;
|
|
|
|
namespace StructureHelperLogics.NdmCalculations.Cracking
|
|
{
|
|
public interface ICrackForceCalculator : ILogicCalculator
|
|
{
|
|
ICrackForceCalculatorInputData InputData { get; set; }
|
|
}
|
|
} |