Fix BeamShearCalculatorLogic

This commit is contained in:
Evgeny Redikultsev
2025-05-11 22:00:22 +05:00
parent 2269b2ea07
commit b38bad251d
26 changed files with 244 additions and 58 deletions

View File

@@ -8,6 +8,10 @@ namespace StructureHelperCommon.Models.Forces
/// </summary>
public interface IGetLoadFactor
{
/// <summary>
/// Returns factor for load
/// </summary>
/// <returns>Factor for load</returns>
double GetFactor();
}
}