mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-05-06 11:32:59 +00:00
17 lines
326 B
C#
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; }
|
|
}
|
|
}
|