10 lines
319 B
C#
10 lines
319 B
C#
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";
|
||
|
|
}
|