Files
ENIG/Cs_HMI/SubProject/AGVControl/Models/RFIDPoint.cs
2025-05-27 16:32:53 +09:00

14 lines
432 B
C#

using System.Drawing;
using System;
using System.Collections.Generic;
namespace AGVControl.Models
{
public class RFIDPoint
{
public Point Location { get; set; }
public uint RFIDValue { get; set; }
public string NextRFID { get; set; } // 다음 RFID 포인트의 값
public bool IsBidirectional { get; set; } // 양방향 연결 여부
public RectangleF Bounds { get; set; }
}
}