blob: 3ae7a2407724986ea6b09a64e02067104c561993 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System.Collections.Generic;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
namespace DevHive.Services.Interfaces
{
public interface ICloudService
{
Task<List<string>> UploadFilesToCloud(List<IFormFile> formFiles);
// Task<List<FileContentResult>> GetFilesFromCloud(List<string> fileUrls);
Task<bool> RemoveFilesFromCloud(List<string> fileUrls);
}
}
|