19 lines
361 B
C#
19 lines
361 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Cursach.Realisations;
|
|
|
|
public class Bind
|
|
{
|
|
public Node Node1 { private set; get; }
|
|
public Node Node2 { private set; get; }
|
|
public Bind(Node node1, Node node2)
|
|
{
|
|
Node1 = node1;
|
|
Node2 = node2;
|
|
}
|
|
}
|