using StructureHelperCommon.Infrastructures.Enums; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StructureHelperCommon.Models.Forces { /// /// Properties of factored combination of forces /// public interface IFactoredCombinationProperty { /// /// Term of calculation for assigned combination /// CalcTerms CalcTerm { get; set; } /// /// Limit state for assigned combination /// LimitStates LimitState { get; set; } /// /// Factor of converting of short term load to long term load /// double LongTermFactor { get; set; } /// /// Factor of converting serviceability state load to ultimate limit state load /// double ULSFactor { get; set; } } }