Files
StructureHelper/StructureHelperLogics/Models/BeamShears/Logics/IGetInclinedSectionBySectionLogic.cs
Evgeny Redikultsev f60d031f91 Add beam section logic
2025-02-09 17:28:33 +05:00

15 lines
344 B
C#

using StructureHelperCommon.Infrastructures.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.Models.BeamShears
{
public interface IGetInclinedSectionLogic : ILogic
{
IInclinedSection GetInclinedSection();
}
}