11 lines
272 B
C#
11 lines
272 B
C#
|
using Azure.Storage.Blobs.Models;
|
|||
|
|
|||
|
namespace DamageAssesment.Api.Attachments.Interfaces
|
|||
|
{
|
|||
|
public interface IAzureBlobService
|
|||
|
{
|
|||
|
Task<List<Azure.Response<BlobContentInfo>>> UploadFiles(List<IFormFile> files);
|
|||
|
void DeleteFile(string path);
|
|||
|
}
|
|||
|
}
|