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;
|
||||
}
|
||||
Reference in New Issue
Block a user