Add ForceCombinationPropertyUserControl
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using Newtonsoft.Json;
|
||||
using StructureHelperCommon.Infrastructures.Enums;
|
||||
using StructureHelperCommon.Models.Forces;
|
||||
|
||||
namespace DataAccess.DTOs
|
||||
{
|
||||
public class ForceFactoredCombinationPropertyDTO : IFactoredCombinationProperty
|
||||
{
|
||||
[JsonProperty("CalctTerm")]
|
||||
public CalcTerms CalcTerm { get; set; }
|
||||
[JsonProperty("LimitState")]
|
||||
public LimitStates LimitState { get; set; }
|
||||
[JsonProperty("LongTermFactor")]
|
||||
public double LongTermFactor { get; set; }
|
||||
[JsonProperty("ULSFactor")]
|
||||
public double ULSFactor { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user