16 lines
352 B
C#
16 lines
352 B
C#
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; }
|
|
} |