13 lines
409 B
C#
13 lines
409 B
C#
using StructureHelperCommon.Models.Calculators;
|
|
|
|
namespace StructureHelperLogics.Models.BeamShears
|
|
{
|
|
public interface IGetInclinedSectionListInputData : IInputData
|
|
{
|
|
int StepCount { get; set; }
|
|
double MaxInclinedSectionLegthFactor { get; set; }
|
|
IGetInclinedSectionLogic? GetInclinedSectionLogic { get; set; }
|
|
IBeamShearSection BeamShearSection { get; set; }
|
|
}
|
|
}
|