Files
ENIG/Cs_HMI/SubProject/AGVMapControl/Models/CustomLine.cs
chi 34130e9c86 add mapcontrol
add remote path(gitlab)
2025-05-22 16:21:56 +09:00

14 lines
292 B
C#

using System.Drawing;
using System;
namespace AGVMapControl.Models
{
public class CustomLine
{
public Point StartPoint { get; set; }
public Point EndPoint { get; set; }
public Color LineColor { get; set; }
public int LineWidth { get; set; }
}
}