ForgotPasswordConfirmation.cshtml.cs 864 B

123456789101112131415161718192021222324
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the MIT license.
  3. #nullable disable
  4. using Microsoft.AspNetCore.Authorization;
  5. using Microsoft.AspNetCore.Mvc.RazorPages;
  6. namespace Admin.Areas.Identity.Pages.Account;
  7. /// <summary>
  8. /// This API supports the ASP.NET Core Identity default UI infrastructure and is not intended to be used
  9. /// directly from your code. This API may change or be removed in future releases.
  10. /// </summary>
  11. [AllowAnonymous]
  12. public class ForgotPasswordConfirmation : PageModel
  13. {
  14. /// <summary>
  15. /// This API supports the ASP.NET Core Identity default UI infrastructure and is not intended to be used
  16. /// directly from your code. This API may change or be removed in future releases.
  17. /// </summary>
  18. public void OnGet()
  19. {
  20. }
  21. }