Files
components/LiteCharms.Features/S3/Configuration/S3Settings.cs
T
Khwezi Mngoma f245bc94e1
continuous-integration/drone/pr Build is passing
Added S3 support
2026-05-19 10:23:36 +02:00

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; }
}