using StructureHelperCommon.Models.Calculators; using StructureHelperLogics.NdmCalculations.Primitives; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StructureHelperLogics.NdmCalculations.Cracking { /// /// Result of calculation of crack for specific result /// public class RebarCrackResult : IResult { /// public bool IsValid { get; set; } /// public string Description { get; set; } /// /// Specific rebar primitive /// public RebarPrimitive RebarPrimitive { get; set; } /// /// Result of calculation of crack for long term /// public CrackWidthRebarTupleResult LongTermResult { get; set; } /// /// Result of calculation of crack for short term /// public CrackWidthRebarTupleResult ShortTermResult { get; set; } } }