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

@ -6,7 +6,11 @@ namespace Esiur.Analysis.Graph
{
public class Edge<T>
{
public T SourceNode { get; set; }
public T DestinationNode { get; set; }
public Node<T> SourceNode { get; set; }
public Node<T> DestinationNode { get; set; }
public T Weight { get; set; }
public string Label { get; set; }
}
}