2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2025-06-27 13:33:13 +00:00
This commit is contained in:
2023-03-28 00:59:26 +03:00
parent 5a9abe4084
commit 1c440adf43
8 changed files with 255 additions and 14 deletions

View File

@ -10,5 +10,10 @@ namespace Esiur.Analysis.Graph
public int X { get; set; }
public int Y { get; set; }
public string Label { get; set; }
public List<Edge<T>> Destinations { get; } = new List<Edge<T>>();
public List<Edge<T>> Sources { get; } = new List<Edge<T>>();
}
}