Add beam shear classes

This commit is contained in:
Evgeny Redikultsev
2025-02-08 22:13:50 +05:00
parent 57bc6141c9
commit 91ccebf147
33 changed files with 1002 additions and 449 deletions

View File

@@ -1,9 +1,5 @@
using StructureHelperCommon.Infrastructures.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Models.Forces
{

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Models.Forces
{
public interface IBeamShearAction : IAction
{
}
}