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