using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_Common { public class OPositions { public static Dictionary HPositions = new Dictionary(); public static Dictionary ZPositions = new Dictionary(); } public class Position { public int PositionX { get; set; } public int PositionY { get; set; } public int PositionZ { get; set; } public int PositionR { get; set; } } }