Fix beam shear force calculator

This commit is contained in:
Evgeny Redikultsev
2025-05-24 20:26:44 +05:00
parent d108c52cac
commit f127594b5c
53 changed files with 920 additions and 121 deletions

View File

@@ -6,10 +6,16 @@ using System.Threading.Tasks;
namespace StructureHelperLogics.Models.BeamShears
{
/// <inheritdoc/>
public class BeamShearCalculatorResult : IBeamShearCalculatorResult
{
/// <inheritdoc/>
public bool IsValid { get; set; } = true;
/// <inheritdoc/>
public string? Description { get; set; } = string.Empty;
/// <inheritdoc/>
public IBeamShearCalculatorInputData InputData { get; set; }
/// <inheritdoc/>
public List<IBeamShearActionResult> ActionResults { get; set; } = new();
}
}