using StructureHelperCommon.Infrastructures.Interfaces;
namespace StructureHelperLogics.NdmCalculations.Cracking
{
public interface IIsSectionCracked : ILogic
{
///
/// Returns result of checking of cracks appearence
///
/// True if Checked collectition contains cracked elements
bool IsSectionCracked();
}
}