Files
StructureHelper/DataAccess/DTOs/DTOEntities/BeamShearDTO.cs
2025-05-25 16:07:55 +05:00

20 lines
431 B
C#

using Newtonsoft.Json;
using StructureHelperLogics.Models.BeamShears;
namespace DataAccess.DTOs.DTOEntities
{
public class BeamShearDTO : IBeamShear
{
[JsonProperty("Id")]
public Guid Id { get; }
[JsonProperty("Repository")]
public IBeamShearRepository Repository { get; set; }
public object Clone()
{
throw new NotImplementedException();
}
}
}