2023-08-31 19:00:51 -04:00
|
|
|
|
using Azure.Storage.Blobs.Models;
|
|
|
|
|
|
2023-09-22 11:52:17 -04:00
|
|
|
|
namespace DamageAssesment.Api.DocuLinks.Interfaces
|
2023-08-31 19:00:51 -04:00
|
|
|
|
{
|
|
|
|
|
public interface IAzureBlobService
|
|
|
|
|
{
|
|
|
|
|
Task<List<Azure.Response<BlobContentInfo>>> UploadFiles(List<IFormFile> files);
|
|
|
|
|
void DeleteFile(string path);
|
|
|
|
|
}
|
|
|
|
|
}
|