Files
NebulaLauncher/Nebula.Shared/FileApis/Interfaces/IWriteFileApi.cs
Cinkafox 0c6bbaadac - tweak: loading popup thinks
* - tweak: change loading handle logic

* - tweak: beautify loading thinks

* - fix: speed thinks while downloading
2025-12-06 23:25:25 +03:00

10 lines
272 B
C#

using Nebula.Shared.Models;
namespace Nebula.Shared.FileApis.Interfaces;
public interface IWriteFileApi
{
public bool Save(string path, Stream input, ILoadingHandler? loadingHandler = null);
public bool Remove(string path);
public bool Has(string path);
}