back photo + event tags and persons
This commit is contained in:
11
back/persistance/blob/IBlobStorageService.cs
Normal file
11
back/persistance/blob/IBlobStorageService.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace back.persistance.blob;
|
||||
|
||||
public interface IBlobStorageService
|
||||
{
|
||||
Task SaveAsync(Stream blobStream, string fileName);
|
||||
Task<Stream?> GetStreamAsync(string fileName);
|
||||
Task<byte[]?> GetBytesAsync(string fileName);
|
||||
Task DeleteAsync(string fileName);
|
||||
Task UpdateAsync(Stream blobStream, string fileName);
|
||||
}
|
||||
|
Reference in New Issue
Block a user