using StructureHelperCommon.Models.Calculators;
using StructureHelperLogics.NdmCalculations.Primitives;
namespace StructureHelperLogics.NdmCalculations.Cracking
{
///
/// Result of calculation of crack for specific result
///
public interface IRebarCrackResult : IResult
{
///
/// Specific rebar primitive
///
IRebarNdmPrimitive? RebarPrimitive { get; set; }
///
/// Result of calculation of crack for long term
///
CrackWidthRebarTupleResult? LongTermResult { get; set; }
///
/// Result of calculation of crack for short term
///
CrackWidthRebarTupleResult? ShortTermResult { get; set; }
}
}