Files
StructureHelper/StructureHelperLogics/Models/BeamShears/Logics/IGetInclinedSectionListInputData.cs
2025-07-18 21:20:45 +05:00

12 lines
381 B
C#

using StructureHelperCommon.Models.Calculators;
namespace StructureHelperLogics.Models.BeamShears
{
public interface IGetInclinedSectionListInputData : IInputData
{
IBeamShearDesignRangeProperty DesignRangeProperty { get; }
IGetInclinedSectionLogic? GetInclinedSectionLogic { get; set; }
IBeamShearSection BeamShearSection { get; set; }
}
}