Add beam section logic

This commit is contained in:
Evgeny Redikultsev
2025-02-09 17:28:33 +05:00
parent 91ccebf147
commit f60d031f91
26 changed files with 701 additions and 63 deletions

View File

@@ -12,6 +12,10 @@ namespace StructureHelperLogics.Models.BeamShears
/// </summary>
public interface IStirrup : ISaveable, ICloneable
{
string Name { get; set; }
string? Name { get; set; }
/// <summary>
/// Distance from axis of comressed rebar to edge of comressed zone, m
/// </summary>
double CompressedGap { get; set; }
}
}