ForgotPasswordConfirmation.cshtml.cs 286 B

12345678910111213
  1. using Microsoft.AspNetCore.Authorization;
  2. using Microsoft.AspNetCore.Mvc.RazorPages;
  3. namespace BO.AppServer.Web.Areas.Identity.Pages.Account
  4. {
  5. [AllowAnonymous]
  6. public class ForgotPasswordConfirmation : PageModel
  7. {
  8. public void OnGet()
  9. {
  10. }
  11. }
  12. }