24 lines
618 B
C#
24 lines
618 B
C#
using Newtonsoft.Json;
|
|
using StructureHelperLogics.Models.BeamShears;
|
|
|
|
namespace DataAccess.DTOs.DTOEntities
|
|
{
|
|
public class StirrupByDensityDTO : IStirrupByDensity
|
|
{
|
|
[JsonProperty("Id")]
|
|
public Guid Id { get; }
|
|
[JsonProperty("Name")]
|
|
public string? Name { get; set; } = string.Empty;
|
|
[JsonProperty("StirrupDensity")]
|
|
public double StirrupDensity { get; set; }
|
|
[JsonProperty("CompressedGap")]
|
|
public double CompressedGap { get; set; }
|
|
|
|
|
|
public object Clone()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|