9 lines
253 B
C#
9 lines
253 B
C#
namespace StructureHelperLogics.NdmCalculations.Cracking
|
|
{
|
|
public interface ICrackWidthTupleResult
|
|
{
|
|
double CrackWidth { get; set; }
|
|
bool IsCrackLessThanUltimate { get; }
|
|
double UltimateCrackWidth { get; set; }
|
|
}
|
|
} |