9 lines
235 B
C#
9 lines
235 B
C#
|
|
namespace TrueCV.Application.Interfaces;
|
||
|
|
|
||
|
|
public interface IFileStorageService
|
||
|
|
{
|
||
|
|
Task<string> UploadAsync(Stream fileStream, string fileName);
|
||
|
|
Task<Stream> DownloadAsync(string blobUrl);
|
||
|
|
Task DeleteAsync(string blobUrl);
|
||
|
|
}
|