Add rebar section logic

This commit is contained in:
RedikultsevEvg
2025-07-16 00:27:44 +05:00
parent 43c78729f0
commit 0addeda339
17 changed files with 478 additions and 48 deletions

View File

@@ -0,0 +1,24 @@
using StructureHelperCommon.Infrastructures.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.Models.Materials
{
/// <summary>
/// Implements properies of cross-section of reinforcement bar
/// </summary>
public interface IRebarSection : ISaveable, ICloneable
{
/// <summary>
/// Material of rebar
/// </summary>
IReinforcementLibMaterial Material { get; set; }
/// <summary>
/// Diameter of rebar
/// </summary>
double Diameter { get; set; }
}
}