Added S3 support and services

This commit is contained in:
2026-08-20 16:46:17 +02:00
parent f4c680d19d
commit 1931899d53
7 changed files with 151 additions and 0 deletions
@@ -0,0 +1,7 @@
namespace PostFundManagement.Domain.Abstractions;
public interface IS3Service
{
Task<Result<string>> UploadFileAsync(string fileName, Stream fileStream, string contentType, CancellationToken cancellationToken = default);
Task<Result> DeleteFileAsync(string fileKey, CancellationToken cancellationToken = default);
}