Files
StructureHelper/StructureHelperCommon/Models/Forces/IForceFactoredCombination.cs
2025-01-20 16:19:14 +05:00

15 lines
457 B
C#

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