aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Engine/ShiftFS/IShiftNode.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS.Engine/ShiftFS/IShiftNode.cs')
-rw-r--r--ShiftOS.Engine/ShiftFS/IShiftNode.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/ShiftOS.Engine/ShiftFS/IShiftNode.cs b/ShiftOS.Engine/ShiftFS/IShiftNode.cs
new file mode 100644
index 0000000..f3a1a19
--- /dev/null
+++ b/ShiftOS.Engine/ShiftFS/IShiftNode.cs
@@ -0,0 +1,23 @@
+using System;
+using Whoa;
+
+namespace ShiftOS.Engine.ShiftFS
+{
+ public interface IShiftNode
+ {
+
+ string Name { get; set; }
+
+
+ string FullName { get; }
+
+
+ ShiftDirectory Parent { get; set; }
+
+
+ ShiftTree Drive { get; }
+
+
+ Guid Guid { get; }
+ }
+} \ No newline at end of file