Files
StructureHelper/StructureHelperLogics/Models/CrossSections/ICrossSection.cs
2025-01-25 19:21:34 +05:00

17 lines
474 B
C#

using StructureHelperCommon.Infrastructures.Interfaces;
using StructureHelperCommon.Models.WorkPlanes;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.Models.CrossSections
{
public interface ICrossSection : ISaveable, ICloneable
{
ICrossSectionRepository SectionRepository { get; set; }
IWorkPlaneProperty WorkPlaneProperty { get; set; }
}
}