using StructureHelperCommon.Infrastructures.Enums; namespace StructureHelperCommon.Models.Forces { /// /// Supports common properties of factored combination of forces /// public interface IForceFactoredCombination : IForceAction { /// /// Properties of factored combination of forces /// IFactoredCombinationProperty CombinationProperty { get; set; } } }