Move projects to src; add Neutrino secret
This commit is contained in:
9
src/RecNet.Infrastructure/Services/Tokens/JwtOptions.cs
Normal file
9
src/RecNet.Infrastructure/Services/Tokens/JwtOptions.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace RecNet.Infrastructure.Services.Tokens;
|
||||
|
||||
public class JwtOptions
|
||||
{
|
||||
public string Secret { get; set; } = string.Empty;
|
||||
public string Issuer { get; set; } = "http://localhost:5155";
|
||||
public string Audience { get; set; } = "TenWholeYears";
|
||||
public int ExpiryMinutes { get; set; } = 60;
|
||||
}
|
||||
Reference in New Issue
Block a user