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