using StructureHelperCommon.Models.Calculators; namespace StructureHelperLogics.NdmCalculations.Cracking { /// /// Result of crack calculation for specific force tuple /// public interface ITupleCrackResult : IResult { /// /// Reference to input data for calculation /// TupleCrackInputData? InputData { get; set; } /// /// True if cross-section has been cracked under specific force combination /// bool IsCracked { get; set; } /// /// Result of calculation of crack width for long term force combination /// CrackWidthRebarTupleResult? LongTermResult { get; set; } /// /// Collection of resuls for specific rebars /// List? RebarResults { get; } /// /// Result of calculation of crack width for short term force combination /// CrackWidthRebarTupleResult? ShortTermResult { get; set; } } }