blob: 040729fbaf229381fd80a1447a50538ca9a1e6af (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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<bool> RemoveFilesFromCloud(List<string> fileUrls);
}
}
|