Added S3 support
continuous-integration/drone/pr Build is passing

This commit is contained in:
Khwezi Mngoma
2026-05-19 10:23:36 +02:00
parent da141311ff
commit f245bc94e1
4 changed files with 83 additions and 0 deletions
@@ -0,0 +1,14 @@
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; }
}