16 lines
491 B
C#
16 lines
491 B
C#
namespace RobotNet10.Common.Models;
|
|
|
|
public class SpaceEdge
|
|
{
|
|
public Guid Id { get; set; }
|
|
public double StartX { get; set; }
|
|
public double StartY { get; set; }
|
|
public double EndX { get; set; }
|
|
public double EndY { get; set; }
|
|
public int Degree { get; set; }
|
|
public double ControlPoint1X { get; set; }
|
|
public double ControlPoint1Y { get; set; }
|
|
public double ControlPoint2X { get; set; }
|
|
public double ControlPoint2Y { get; set; }
|
|
}
|