summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2021-04-11 18:42:47 -0500
committerToby Vincent <tobyv13@gmail.com>2021-04-11 18:42:47 -0500
commit541ab24f64a3839afb493d8260495eddd4416c37 (patch)
tree22ef6da0afb617a1b39c90e7308b900ca5ae39db
parent624a932d76fc120bffc34bb1584280f03ff3eb42 (diff)
moved interfaces into seperate project
-rw-r--r--Interfaces/INode.cs10
1 files changed, 0 insertions, 10 deletions
diff --git a/Interfaces/INode.cs b/Interfaces/INode.cs
deleted file mode 100644
index c0b9f63..0000000
--- a/Interfaces/INode.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-using System;
-
-namespace PriorityQueue.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