13 lines
215 B
C#
13 lines
215 B
C#
namespace UGQApiServer.Storage;
|
|
|
|
|
|
public interface IStorageService
|
|
{
|
|
|
|
string fileUrl(string filename);
|
|
Task<bool> uploadFile(string filename, IFormFile file);
|
|
Task<bool> deleteFile(string filename);
|
|
}
|
|
|
|
|