Files
components/LiteCharms.Features/S3/Configuration/S3Settings.cs
T
Khwezi Mngoma 52d204e286
continuous-integration/drone/pr Build is passing
Refactored service to internalise the CDN
2026-05-19 11:34:00 +02:00

17 lines
343 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; }
public string? CdnBaseUrl { get; set; }
}