ForgotPasswordConfirmation.cshtml.cs 357 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Threading.Tasks;
  4. using Microsoft.AspNetCore.Authorization;
  5. using Microsoft.AspNetCore.Mvc.RazorPages;
  6. namespace HyperCube.Areas.Identity.Pages.Account
  7. {
  8. [AllowAnonymous]
  9. public class ForgotPasswordConfirmation : PageModel
  10. {
  11. public void OnGet()
  12. {
  13. }
  14. }
  15. }