Added S3 support and services
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user