Files

8 lines
203 B
C#
Raw Permalink Normal View History

2025-01-05 17:05:23 +03:00
namespace Nebula.Shared.FileApis.Interfaces;
2024-12-22 16:38:47 +03:00
public interface IWriteFileApi
{
public bool Save(string path, Stream input);
public bool Remove(string path);
public bool Has(string path);
}