using System.Drawing; using System; using System.Collections.Generic; namespace AGVControl.Models { public class MapData { public List RFIDPoints { get; set; } = new List(); public List MagnetLines { get; set; } = new List(); public List MapTexts { get; set; } = new List(); public List CustomLines { get; set; } = new List(); public List RFIDLines { get; set; } = new List(); } }