using StructureHelperCommon.Models.Forces; namespace StructureHelperLogics.NdmCalculations.Cracking { /// /// /// public interface ICrackWidthTupleResult { /// /// Calculated crack width, m /// double CrackWidth { get; set; } /// /// True if actual crack width less than limit one /// bool IsCrackLessThanUltimate { get; } /// /// Limit crack width, m /// double UltimateCrackWidth { get; set; } } }