Add extended force tuple result

This commit is contained in:
Evgeny Redikultsev
2025-11-03 13:58:27 +05:00
parent 871be6cb46
commit b28606003a
24 changed files with 354 additions and 8 deletions

View File

@@ -0,0 +1,13 @@
using StructureHelperCommon.Infrastructures.Enums;
namespace StructureHelperCommon.Models.States
{
/// <summary>
/// Implements pair of limit state and calculeation term
/// </summary>
public interface IStateCalcTermPair
{
LimitStates LimitState { get; set; }
CalcTerms CalcTerm { get; set; }
}
}