15 lines
298 B
C#
15 lines
298 B
C#
namespace LiteCharms.Features.S3.Configuration;
|
|
|
|
public 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; }
|
|
}
|