Refactor runtime bootstrap and ship control flows
This commit is contained in:
10
apps/backend/Auth/Simulation/JwtOptions.cs
Normal file
10
apps/backend/Auth/Simulation/JwtOptions.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace SpaceGame.Api.Auth.Simulation;
|
||||
|
||||
public sealed class JwtOptions
|
||||
{
|
||||
public string Issuer { get; set; } = "space-game";
|
||||
public string Audience { get; set; } = "space-game-viewer";
|
||||
public string SigningKey { get; set; } = string.Empty;
|
||||
public int AccessTokenLifetimeMinutes { get; set; } = 30;
|
||||
public int RefreshTokenLifetimeDays { get; set; } = 30;
|
||||
}
|
||||
Reference in New Issue
Block a user