summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2021-04-11 16:38:38 -0500
committerToby Vincent <tobyv13@gmail.com>2021-04-11 16:39:05 -0500
commit9ae8421099a05d8ef2fe3711fd9f4f195fe73a00 (patch)
tree6bb7de73a50adf677eec4d526576e5852f30446c
parent7e4c101b95d3a1ee26f77f29f157205c7b4af2e8 (diff)
migrated project to seperate repository
-rw-r--r--INode.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/INode.cs b/INode.cs
new file mode 100644
index 0000000..2704c0b
--- /dev/null
+++ b/INode.cs
@@ -0,0 +1,10 @@
+using System;
+
+namespace Graph.Interfaces
+{
+ public interface INode<T> : IComparable<INode<T>> where T : IComparable<T>
+ {
+ int Id { get ; set; }
+ T Key { get; set; }
+ }
+} \ No newline at end of file