PIBD-14_Boyko_M_S_Cursach_DFS/Cursach/Realisations/Bind.cs
2024-05-16 00:37:58 +04:00

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;
}
}