using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc.RazorPages; using TaxBaik.Web.Services; namespace TaxBaik.Web.Pages.Portal; [Authorize(AuthenticationSchemes = PortalAuthDefaults.Scheme)] public class IndexModel : PageModel { public void OnGet() { } }