initial commit
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
public class JwtOptions
|
||||
{
|
||||
public const string Section = "Jwt";
|
||||
public string Secret { get; set; } = null!;
|
||||
public string Issuer { get; set; } = null!;
|
||||
public string Audience { get; set; } = null!;
|
||||
public int ExpiryMinutes { get; set; } = 480;
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
public class MinioOptions
|
||||
{
|
||||
public const string Section = "Minio";
|
||||
public string Endpoint { get; set; } = null!;
|
||||
public string AccessKey { get; set; } = null!;
|
||||
public string SecretKey { get; set; } = null!;
|
||||
public string BucketName { get; set; } = "scans";
|
||||
public bool UseSsl { get; set; }
|
||||
public int PresignedUrlExpiryMinutes { get; set; } = 15;
|
||||
}
|
||||
Reference in New Issue
Block a user