namespace StructureHelperCommon.Models.Forces.Logics { /// /// Returns combinations for source combination and properties /// public interface IGetCombinationsByFactoredTupleLogic { /// /// Source combination of forces /// IForceTuple? SourceForceTuple { get; set; } /// /// Properties of combination for source combination of force /// IFactoredCombinationProperty? CombinationProperty { get; set; } /// IForceActionProperty? ForceActionProperty { get; set; } /// /// Returns combination list /// /// IForceCombinationList GetCombinationList(); } }