initial commit

This commit is contained in:
voltsrage
2026-06-26 04:20:20 +08:00
commit 869006e5e7
64 changed files with 4632 additions and 0 deletions
@@ -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;
}