fix: change s3

This commit is contained in:
2026-09-15 21:13:37 +07:00
parent 52685e86ea
commit 4078bf01f4
9 changed files with 119 additions and 242 deletions
+9
View File
@@ -0,0 +1,9 @@
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";
}