using StructureHelperCommon.Infrastructures.Interfaces;
namespace StructureHelperLogics.Models.BeamShears
{
///
/// Returns collection of inclined section for beam shear calculating
///
public interface IGetInclinedSectionListLogic : ILogic
{
List GetInclinedSections();
}
}