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,16 @@
namespace PostFundManagement.Domain.Configuration.S3;
public sealed class S3Settings
{
public string? ServiceUrl { get; set; }
public string? AccessKey { get; set; }
public string? SecretKey { get; set; }
public string? BucketName { get; set; }
public string? Region { get; set; }
public string? CdnBaseUrl { get; set; }
}