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