using StructureHelperCommon.Infrastructures.Interfaces; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StructureHelperCommon.Models.Forces { public interface IFactoredForceTuple : ISaveable, ICloneable { /// /// Combination of internal forces for bar /// IForceTuple ForceTuple { get; set; } /// /// Properties of combination of forces /// IFactoredCombinationProperty CombinationProperty { get; set; } } }