Files
StructureHelper/DataAccess/DTOs/CrossSectionDTO.cs
2024-09-06 18:13:21 +05:00

22 lines
465 B
C#

using StructureHelperLogics.Models.CrossSections;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataAccess.DTOs
{
public class CrossSectionDTO : ICrossSection
{
public ICrossSectionRepository SectionRepository { get; }
public Guid Id { get; set; }
public object Clone()
{
throw new NotImplementedException();
}
}
}