mirror of
https://github.com/ShiftOS-Rewind/ShiftOS.git
synced 2025-01-22 11:21:45 -05:00
23 lines
261 B
C#
23 lines
261 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|