add mapcontrol
add remote path(gitlab)
This commit is contained in:
13
Cs_HMI/SubProject/AGVMapControl/Models/RFIDPoint.cs
Normal file
13
Cs_HMI/SubProject/AGVMapControl/Models/RFIDPoint.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System.Drawing;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
namespace AGVMapControl.Models
|
||||
{
|
||||
public class RFIDPoint
|
||||
{
|
||||
public Point Location { get; set; }
|
||||
public string RFIDValue { get; set; }
|
||||
public string NextRFID { get; set; } // 다음 RFID 포인트의 값
|
||||
public bool IsBidirectional { get; set; } // 양방향 연결 여부
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user