add mapcontrol
add remote path(gitlab)
This commit is contained in:
14
Cs_HMI/SubProject/AGVMapControl/Models/MapData.cs
Normal file
14
Cs_HMI/SubProject/AGVMapControl/Models/MapData.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System.Drawing;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
namespace AGVMapControl.Models
|
||||
{
|
||||
public class MapData
|
||||
{
|
||||
public List<RFIDPoint> RFIDPoints { get; set; } = new List<RFIDPoint>();
|
||||
public List<MagnetLine> MagnetLines { get; set; } = new List<MagnetLine>();
|
||||
public List<MapText> MapTexts { get; set; } = new List<MapText>();
|
||||
public List<CustomLine> CustomLines { get; set; } = new List<CustomLine>();
|
||||
public List<RFIDLine> RFIDLines { get; set; } = new List<RFIDLine>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user