13 lines
453 B
C#
13 lines
453 B
C#
using StructureHelperCommon.Models;
|
|
using StructureHelperCommon.Models.Calculators;
|
|
|
|
namespace StructureHelperLogics.Models.BeamShears
|
|
{
|
|
public interface IRestrictStirrupCalculator : ILogicCalculator
|
|
{
|
|
IBeamShearSectionLogicInputData InputData { get; set; }
|
|
ISectionEffectiveness SectionEffectiveness { get; set; }
|
|
double SourceStirrupStrength { get; set; }
|
|
IInclinedSection SourceSection { get; set; }
|
|
}
|
|
} |