Files
StructureHelper/StructureHelperLogics/Models/BeamShears/Logics/IGetInclinedSectionListInputData.cs
2025-06-21 21:34:20 +05:00

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; }
}
}