Skip to content

Commit 5e7bd39

Browse files
authored
Refactor Node class and update namespace
1 parent 48e6986 commit 5e7bd39

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Node.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22
using System.Collections.Generic;
3-
3+
namespace Graph_database;
44
/// <summary>
55
/// Represents a single node (vertex) within the graph structure.
66
/// Acts as a container for data and maintains a list of outgoing connections.
@@ -41,3 +41,4 @@ public Node(Tkey id, Tdata data)
4141
Data = data;
4242
}
4343
}
44+

0 commit comments

Comments
 (0)