14 lines
289 B
C#
14 lines
289 B
C#
using System.Drawing;
|
|
using System;
|
|
|
|
|
|
namespace AGVControl.Models
|
|
{
|
|
public class CustomLine
|
|
{
|
|
public Point StartPoint { get; set; }
|
|
public Point EndPoint { get; set; }
|
|
public Color LineColor { get; set; }
|
|
public int LineWidth { get; set; }
|
|
}
|
|
} |