diff options
Diffstat (limited to 'src/DevHive.Services/Interfaces/ICloudService.cs')
| -rw-r--r-- | src/DevHive.Services/Interfaces/ICloudService.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/DevHive.Services/Interfaces/ICloudService.cs b/src/DevHive.Services/Interfaces/ICloudService.cs index 6616444..3ae7a24 100644 --- a/src/DevHive.Services/Interfaces/ICloudService.cs +++ b/src/DevHive.Services/Interfaces/ICloudService.cs @@ -1,6 +1,7 @@ using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; namespace DevHive.Services.Interfaces { @@ -8,6 +9,8 @@ namespace DevHive.Services.Interfaces { Task<List<string>> UploadFilesToCloud(List<IFormFile> formFiles); + // Task<List<FileContentResult>> GetFilesFromCloud(List<string> fileUrls); + Task<bool> RemoveFilesFromCloud(List<string> fileUrls); } } |
