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