Change force tuple calculator result

This commit is contained in:
Evgeny Redikultsev
2025-11-04 21:16:06 +05:00
parent b28606003a
commit 111b60a08d
52 changed files with 314 additions and 375 deletions

View File

@@ -0,0 +1,12 @@
using StructureHelperCommon.Models.Calculators;
using System.Collections.Generic;
namespace StructureHelperLogics.NdmCalculations.Analyses.ByForces
{
public interface IForceCalculatorResult : IResult
{
bool IsValid { get; set; }
string Description { get; set; }
List<IExtendedForceTupleCalculatorResult> ForcesResultList { get; }
}
}