Files
ENIG/Cs_HMI/SubProject/AGVControl/Models/MapData.cs
2025-05-26 10:21:17 +09:00

14 lines
556 B
C#

using System.Drawing;
using System;
using System.Collections.Generic;
namespace AGVControl.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>();
}
}