Files
ENIG/Cs_HMI/SubProject/AGVControl/Models/CustomLine.cs
2025-05-26 10:21:17 +09:00

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