Files
StructureHelper/StructureHelperLogics/Models/BeamShears/Logics/IGetInclinedSectionListLogic.cs
2025-08-09 17:33:08 +05:00

15 lines
493 B
C#

using StructureHelperCommon.Infrastructures.Interfaces;
namespace StructureHelperLogics.Models.BeamShears
{
/// <summary>
/// Returns collection of inclined section for beam shear calculating
/// </summary>
public interface IGetInclinedSectionListLogic : ILogic
{
public IBeamShearDesignRangeProperty DesignRangeProperty { get; set; }
public IBeamShearSection BeamShearSection { get; set; }
List<IInclinedSection> GetInclinedSections();
}
}