Files
NebulaLauncher/Nebula.Launcher/FileApis/Interfaces/IWriteFileApi.cs

10 lines
223 B
C#
Raw Normal View History

2024-12-22 16:38:47 +03:00
using System.IO;
namespace Nebula.Launcher.FileApis.Interfaces;
public interface IWriteFileApi
{
public bool Save(string path, Stream input);
public bool Remove(string path);
public bool Has(string path);
}