2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2025-05-06 19:42:58 +00:00
2023-03-28 00:59:26 +03:00

17 lines
326 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Esiur.Analysis.Graph
{
public class Edge<T>
{
public Node<T> SourceNode { get; set; }
public Node<T> DestinationNode { get; set; }
public T Weight { get; set; }
public string Label { get; set; }
}
}