9 lines
262 B
C#
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; } = "";
|
|
} |