Files
caliverse_server/UGQApiServer/Storage/IStorageService.cs
2025-05-01 07:20:41 +09:00

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);
}