namespace Pldpro.Web.Models; public sealed class S3Settings { public string ServiceURL { get; set; } = string.Empty; public string AccessKey { get; set; } = string.Empty; public string SecretKey { get; set; } = string.Empty; public bool UseHttp { get; set; } = true; public bool ForcePathStyle { get; set; } = true; public string? DefaultBucketPrefix { get; set; } }