using LoaderCalculator.Data.Ndms; using StructureHelperCommon.Models.Forces; namespace StructureHelperLogics.NdmCalculations.Cracking { /// /// Logic for checking collection of ndms for appearance of crack /// public interface IIsSectionCrackedByForceLogic : IIsSectionCracked { /// /// Force tuple for checking of cracks appearence /// IForceTuple ForceTuple { get; set; } /// /// Collection of ndms which is checking for cracking /// IEnumerable CheckedNdmCollection { get; set; } /// /// Full ndms collection of cross-section /// IEnumerable SectionNdmCollection { get; set; } } }