Files
StructureHelper/StructureHelperLogics/Models/CrossSections/CrossSection.cs
2024-09-01 13:04:00 +05:00

26 lines
573 B
C#

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