using System; using System.Collections.Generic; using System.Text; namespace Esiur.Analysis.Graph { public class Node { public T Value { get; set; } public int X { get; set; } public int Y { get; set; } public string Label { get; set; } public List> Destinations { get; } = new List>(); public List> Sources { get; } = new List>(); } }