Files
StructureHelper/StructureHelperLogics/Models/Templates/CrossSections/IForceLogic.cs
2023-05-06 21:10:02 +05:00

15 lines
333 B
C#

using StructureHelperCommon.Models.Forces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.Models.Templates.CrossSections
{
internal interface IForceLogic
{
IEnumerable<IForceAction> GetCombinationList();
}
}