using Newtonsoft.Json; using StructureHelper.Models.Materials; using StructureHelperCommon.Models.Calculators; using StructureHelperCommon.Models.Forces; using StructureHelperLogics.Models.CrossSections; using StructureHelperLogics.NdmCalculations.Primitives; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataAccess.DTOs { public class CrossSectionRepositoryDTO : ICrossSectionRepository { [JsonProperty("Id")] public Guid Id { get; set; } [JsonProperty("HeadMaterials")] public List HeadMaterials { get; } = new(); [JsonProperty("ForceActions")] public List ForceActions { get; } = new(); [JsonProperty("Primitives")] public List Primitives { get; } = new(); [JsonProperty("Calculators")] public List Calculators { get; } = new(); } }