Files
StructureHelper/StructureHelperLogics/NdmCalculations/Cracking/ISectionCrackedLogic.cs
2023-07-16 17:21:28 +05:00

18 lines
441 B
C#

using LoaderCalculator.Data.Ndms;
using StructureHelperCommon.Models.Forces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.NdmCalculations.Cracking
{
internal interface ISectionCrackedLogic
{
IForceTuple Tuple { get; set; }
IEnumerable<INdm> NdmCollection { get; set; }
bool IsSectionCracked();
}
}