14 lines
324 B
C#
14 lines
324 B
C#
namespace MoonlightServers.Daemon.ServerSys.Abstractions;
|
|
|
|
public interface IFileSystem : IServerComponent
|
|
{
|
|
public bool IsMounted { get; }
|
|
public bool Exists { get; }
|
|
|
|
public Task Create();
|
|
public Task Mount();
|
|
public Task Unmount();
|
|
public Task Delete();
|
|
|
|
public string GetExternalPath();
|
|
} |