namespace LiteCharms.Features.S3.Configuration; 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; } }