25 lines
847 B
C#
25 lines
847 B
C#
using StructureHelperCommon.Infrastructures.Enums;
|
|
|
|
namespace StructureHelperLogics.Models.BeamShears
|
|
{
|
|
/// <inheritdoc/>
|
|
public class InclinedSection : IInclinedSection
|
|
{
|
|
/// <inheritdoc/>
|
|
public double FullDepth { get; set; }
|
|
/// <inheritdoc/>
|
|
public double EffectiveDepth { get; set; }
|
|
/// <inheritdoc/>
|
|
public double WebWidth { get; set; }
|
|
/// <inheritdoc/>
|
|
public double StartCoord { get; set; }
|
|
/// <inheritdoc/>
|
|
public double EndCoord { get; set; }
|
|
public double ConcreteCompressionStrength { get; set; }
|
|
public double ConcreteTensionStrength { get; set; }
|
|
public IBeamShearSection BeamShearSection { get; set; }
|
|
public LimitStates LimitState { get; set; }
|
|
public CalcTerms CalcTerm { get; set; }
|
|
}
|
|
}
|