Files
NebulaLauncher/Nebula.Shared/FileApis/Interfaces/IWriteFileApi.cs
2025-01-05 17:05:23 +03:00

8 lines
203 B
C#

namespace Nebula.Shared.FileApis.Interfaces;
public interface IWriteFileApi
{
public bool Save(string path, Stream input);
public bool Remove(string path);
public bool Has(string path);
}