Lockout.cshtml.cs 915 B

12345678910111213141516171819202122232425
  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 bitforum.Areas.Identity.Pages.Account
  7. {
  8. /// <summary>
  9. /// This API supports the ASP.NET Core Identity default UI infrastructure and is not intended to be used
  10. /// directly from your code. This API may change or be removed in future releases.
  11. /// </summary>
  12. [AllowAnonymous]
  13. public class LockoutModel : PageModel
  14. {
  15. /// <summary>
  16. /// This API supports the ASP.NET Core Identity default UI infrastructure and is not intended to be used
  17. /// directly from your code. This API may change or be removed in future releases.
  18. /// </summary>
  19. public void OnGet()
  20. {
  21. }
  22. }
  23. }