22 lines
605 B
C#
22 lines
605 B
C#
using StructureHelperCommon.Models.Calculators;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StructureHelperLogics.NdmCalculations.Cracking
|
|
{
|
|
public class CrackWidthCalculatorResult : IResult
|
|
{
|
|
public bool IsValid { get; set; }
|
|
public string Description { get; set; }
|
|
public List<CrackWidthSimpleCalculatorResult> RebarResults { get; set; }
|
|
|
|
public CrackWidthCalculatorResult()
|
|
{
|
|
RebarResults = new List<CrackWidthSimpleCalculatorResult>();
|
|
}
|
|
}
|
|
}
|