using Newtonsoft.Json; using StructureHelperCommon.Models.Forces; using StructureHelperLogics.Models.BeamShears; namespace DataAccess.DTOs { public class BeamShearCalculatorInputDataDTO : IBeamShearCalculatorInputData { [JsonProperty("Id")] public Guid Id { get; } [JsonProperty("Actions")] public List Actions { get; } = new(); [JsonProperty("Sections")] public List Sections { get; } = new(); [JsonProperty("Stirrups")] public List Stirrups { get; } = new(); public IBeamShearDesignRangeProperty DesignRangeProperty { get; set; } public BeamShearCalculatorInputDataDTO(Guid id) { Id = id; } } }