12 lines
189 B
C#
12 lines
189 B
C#
|
|
using System.Collections;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System;
|
||
|
|
|
||
|
|
namespace Rokojori
|
||
|
|
{
|
||
|
|
public class GraphConnection<N> where N:class
|
||
|
|
{
|
||
|
|
public N from;
|
||
|
|
public N to;
|
||
|
|
}
|
||
|
|
}
|