Files
StructureHelper/StructureHelperLogics/NdmCalculations/Cracking/ITupleRebarsCrackSolver.cs
2024-07-28 22:34:47 +05:00

18 lines
572 B
C#

using StructureHelperCommon.Infrastructures.Interfaces;
using StructureHelperLogics.NdmCalculations.Primitives;
namespace StructureHelperLogics.NdmCalculations.Cracking
{
public interface ITupleRebarsCrackSolver : ILogic
{
string Description { get; }
TupleCrackInputData InputData { get; set; }
bool IsResultValid { get; }
double LongLength { get; set; }
IEnumerable<RebarPrimitive> Rebars { get; set; }
List<RebarCrackResult> Result { get; }
double ShortLength { get; set; }
void Run();
}
}