зеркало из https://github.com/stride3d/GraphX.git
21 строка
496 B
C#
21 строка
496 B
C#
using GraphX.PCL.Common.Models;
|
|
|
|
namespace GraphX.Controls.DesignerExampleData
|
|
{
|
|
internal sealed class EdgeDataExample<TVertex> : EdgeBase<TVertex>
|
|
{
|
|
public EdgeDataExample(TVertex source, TVertex target)
|
|
: base(source, target)
|
|
{
|
|
|
|
}
|
|
public EdgeDataExample(TVertex source, TVertex target, double weight)
|
|
: base(source, target, weight)
|
|
{
|
|
|
|
}
|
|
|
|
public string Text { get; set; }
|
|
}
|
|
}
|