/// /// Copyright (c) 2020 Sensus Slovensko a.s. /// using System; namespace SchematicDrawing { public class Node { public int X; public int Y; public Orient Orient; public Node(int x, int y, Orient orient) { X = x; Y = y; Orient = orient; } } }