Files
ENIG/HMI/SubProject/AGVControl/Models/CustomLine.cs
ChiKyun Kim 58ca67150d 파일정리
2026-01-29 14:03:17 +09:00

14 lines
287 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; }
}
}