Add calculators saving

This commit is contained in:
Evgeny Redikultsev
2024-10-19 20:32:25 +05:00
parent d16c0e1f79
commit d3a1992f4d
131 changed files with 1742 additions and 375 deletions

View File

@@ -0,0 +1,34 @@
using Newtonsoft.Json;
using StructureHelperCommon.Models.Sections;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataAccess.DTOs
{
public class CompressedMemberDTO : ICompressedMember
{
[JsonProperty("Id")]
public Guid Id { get; set; }
[JsonProperty("Bucling")]
public bool Buckling { get; set; }
[JsonProperty("GeometryLength")]
public double GeometryLength { get; set; }
[JsonProperty("LengthFactorX")]
public double LengthFactorX { get; set; }
[JsonProperty("DiagramFactorX")]
public double DiagramFactorX { get; set; }
[JsonProperty("LengthFactorY")]
public double LengthFactorY { get; set; }
[JsonProperty("DiagramFactorY")]
public double DiagramFactorY { get; set; }
public object Clone()
{
throw new NotImplementedException();
}
}
}