Change convert strategies to save xls imported forces
This commit is contained in:
@@ -8,13 +8,17 @@ namespace DataAccess.DTOs
|
||||
public class CrackCalculatorInputDataDTO : ICrackCalculatorInputData
|
||||
{
|
||||
[JsonProperty("Id")]
|
||||
public Guid Id { get; set; } = Guid.NewGuid();
|
||||
public Guid Id { get; }
|
||||
[JsonProperty("ForceActions")]
|
||||
public List<IForceAction> ForceActions { get; set; } = new();
|
||||
[JsonProperty("ForcePrimitives")]
|
||||
public List<INdmPrimitive> Primitives { get; set; } = new();
|
||||
[JsonProperty("UserCrackInputData")]
|
||||
public IUserCrackInputData UserCrackInputData { get; set; } = new UserCrackInputDataDTO();
|
||||
public IUserCrackInputData UserCrackInputData { get; set; }
|
||||
public CrackCalculatorInputDataDTO(Guid id)
|
||||
{
|
||||
Id = id;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user