mirror of
https://github.com/ShiftOS-Rewind/ShiftOS.git
synced 2025-01-22 17:52:15 +00: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; }
|
|
}
|
|
} |