using Newtonsoft.Json; using StructureHelperCommon.Models.Calculators; using StructureHelperCommon.Models.Forces; using StructureHelperLogics.Models.BeamShears; namespace DataAccess.DTOs.DTOEntities { public class BeamShearRepositoryDTO : IBeamShearRepository { [JsonProperty("Id")] public Guid Id { get; } [JsonProperty("Actions")] public List Actions { get; } = new(); [JsonProperty("Calculators")] public List Calculators { get; } = new(); [JsonProperty("Sections")] public List Sections { get; } = new(); [JsonProperty("Stirrups")] public List Stirrups { get; } = new(); public object Clone() { throw new NotImplementedException(); } } }