Add curvature calculator DTOs

This commit is contained in:
Evgeny Redikultsev
2025-11-23 17:19:36 +05:00
parent 7ab4909c67
commit 5daa32a954
77 changed files with 1415 additions and 165 deletions

View File

@@ -0,0 +1,24 @@
using Newtonsoft.Json;
using StructureHelperCommon.Models.Forces;
using StructureHelperLogics.NdmCalculations.Analyses.Curvatures;
namespace DataAccess.DTOs
{
public class DeflectionFactorDTO : IDeflectionFactor
{
[JsonProperty("Id")]
public Guid Id { get; }
[JsonProperty("DeflectionFactors")]
public IForceTuple DeflectionFactors { get; set; }
[JsonProperty("SpanLength")]
public double SpanLength { get; set; }
[JsonProperty("MaxDeflections")]
public IForceTuple MaxDeflections { get; set; }
public DeflectionFactorDTO(Guid id)
{
Id = id;
}
}
}