ResetPasswordConfirmation.cshtml.cs 381 B

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