Add extended force tuple result
This commit is contained in:
20
StructureHelperCommon/Models/Shapes/Point2DRange.cs
Normal file
20
StructureHelperCommon/Models/Shapes/Point2DRange.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace StructureHelperCommon.Models.Shapes
|
||||
{
|
||||
public class Point2DRange : IPoint2DRange
|
||||
{
|
||||
public Guid Id { get; }
|
||||
public IPoint2D StartPoint { get; set; } = new Point2D();
|
||||
public IPoint2D EndPoint { get; set; } = new Point2D();
|
||||
|
||||
public Point2DRange(Guid id)
|
||||
{
|
||||
Id = id;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user