11 lines
380 B
C#
11 lines
380 B
C#
using StructureHelperCommon.Infrastructures.Interfaces;
|
|
using StructureHelperCommon.Models.Calculators;
|
|
|
|
namespace StructureHelperLogics.Models.BeamShears
|
|
{
|
|
public interface IBeamShearCalculatorInputData : ISaveable, IInputData, IHasBeamShearActions, IHasBeamShearSections, IHasStirrups
|
|
{
|
|
IBeamShearDesignRangeProperty DesignRangeProperty { get; set; }
|
|
}
|
|
}
|