Add polygon to DTO convert strategy
This commit is contained in:
11
StructureHelperCommon/Models/Shapes/IPolygonSegment.cs
Normal file
11
StructureHelperCommon/Models/Shapes/IPolygonSegment.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using StructureHelperCommon.Infrastructures.Interfaces;
|
||||
|
||||
namespace StructureHelperCommon.Models.Shapes
|
||||
{
|
||||
public interface IPolygonSegment : ISaveable
|
||||
{
|
||||
IVertex StartVertex { get; }
|
||||
IVertex EndVertex { get; }
|
||||
void UpdateEndFromParameters();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user