초기커밋
This commit is contained in:
12
UGQApiServer/Storage/IStorageService.cs
Normal file
12
UGQApiServer/Storage/IStorageService.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace UGQApiServer.Storage;
|
||||
|
||||
|
||||
public interface IStorageService
|
||||
{
|
||||
|
||||
string fileUrl(string filename);
|
||||
Task<bool> uploadFile(string filename, IFormFile file);
|
||||
Task<bool> deleteFile(string filename);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user