gandalf-reborn/Security/Scheme/GandalfRebornJwtTokenAuthSchemeOptions.cs
2025-03-02 12:51:02 +01:00

9 lines
262 B
C#

using Microsoft.AspNetCore.Authentication;
namespace Security.Scheme;
public class GandalfRebornJwtTokenAuthSchemeOptions : AuthenticationSchemeOptions
{
public string JwtSecret { get; set; } = "superSecret";
public string BaseUrl { get; set; } = "";
}