Files
StructureHelper/StructureHelperLogics/NdmCalculations/Cracking/ICrackWidthTupleResult.cs
2024-05-19 17:38:54 +05:00

9 lines
253 B
C#

namespace StructureHelperLogics.NdmCalculations.Cracking
{
public interface ICrackWidthTupleResult
{
double CrackWidth { get; set; }
bool IsCrackLessThanUltimate { get; }
double UltimateCrackWidth { get; set; }
}
}