Files
mws.backend.dotnet/infrastructure/Storage/MinioOptions.cs
T

10 lines
319 B
C#
Raw Normal View History

2026-09-15 21:13:37 +07:00
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";
}