namespace HeuristicLab.Problems.RoutePlanning.Interfaces { public interface IEdge { T Source { get; } T Target { get; } } }