using System.Drawing; using System; using System.Collections.Generic; namespace AGVControl.Models { public class MagnetLine { public Point StartPoint { get; set; } public Point EndPoint { get; set; } public List BranchPoints { get; set; } public Dictionary BranchDirections { get; set; } public MagnetLine() { BranchPoints = new List(); BranchDirections = new Dictionary(); } } }