using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.AspNetCore.Http; namespace DevHive.Services.Interfaces { public interface ICloudService { Task> UploadFilesToCloud(List formFiles); Task RemoveFilesFromCloud(List fileUrls); } }