* - tweak: change loading handle logic * - tweak: beautify loading thinks * - fix: speed thinks while downloading
10 lines
272 B
C#
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);
|
|
} |