Add materials converting from DTOs
This commit is contained in:
@@ -22,7 +22,7 @@ namespace StructureHelperCommon.Models.Forces
|
||||
/// <inheritdoc/>
|
||||
public IPoint2D ForcePoint { get; set; }
|
||||
/// <inheritdoc/>
|
||||
public IForceTuple FullSLSForces { get; private set; }
|
||||
public IForceTuple FullSLSForces { get; set; }
|
||||
/// <inheritdoc/>
|
||||
public double ULSFactor { get; set; }
|
||||
/// <inheritdoc/>
|
||||
|
||||
@@ -22,7 +22,7 @@ namespace StructureHelperCommon.Models.Forces
|
||||
/// <inheritdoc/>
|
||||
public IPoint2D ForcePoint { get; set; }
|
||||
/// <inheritdoc/>
|
||||
public List<IDesignForceTuple> DesignForces { get; private set; }
|
||||
public List<IDesignForceTuple> DesignForces { get; set; }
|
||||
|
||||
|
||||
public ForceCombinationList(Guid id)
|
||||
|
||||
@@ -9,7 +9,7 @@ namespace StructureHelperCommon.Models.Forces
|
||||
{
|
||||
public interface IForceCombinationByFactor : IForceAction
|
||||
{
|
||||
IForceTuple FullSLSForces { get; }
|
||||
IForceTuple FullSLSForces { get; set; }
|
||||
double ULSFactor { get; set; }
|
||||
double LongTermFactor { get; set; }
|
||||
}
|
||||
|
||||
@@ -6,6 +6,6 @@ namespace StructureHelperCommon.Models.Forces
|
||||
{
|
||||
public interface IForceCombinationList : IForceAction
|
||||
{
|
||||
List<IDesignForceTuple> DesignForces { get;}
|
||||
List<IDesignForceTuple> DesignForces { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user