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

14 lines
559 B
C#

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>();
}
}