namespace mws.backend.dotnet.infrastructure.Storage; public class MinioOptions { public string Endpoint { get; set; } = "https://minio.koda.id.vn"; public string AccessKey { get; set; } = string.Empty; public string SecretKey { get; set; } = string.Empty; public string Bucket { get; set; } = "mws"; }