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; } } }