Files
StructureHelper/StructureHelperCommon/Infrastructures/Interfaces/IEffectiveDepth.cs
Evgeny Redikultsev e4a23f5139 Add BeamShearCalculator
2025-02-16 17:24:16 +05:00

24 lines
593 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Infrastructures.Interfaces
{
/// <summary>
/// Implement effective depth for reinforced concrete section
/// </summary>
public interface IEffectiveDepth
{
/// <summary>
/// Full depth of cross-section
/// </summary>
double FullDepth { get; set; }
/// <summary>
/// Effective depth of cross-section
/// </summary>
double EffectiveDepth { get; set; }
}
}