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