AccessDenied.cshtml.cs 796 B

12345678910111213141516171819202122
  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.Mvc.RazorPages;
  5. namespace Admin.Areas.Identity.Pages.Account;
  6. /// <summary>
  7. /// This API supports the ASP.NET Core Identity default UI infrastructure and is not intended to be used
  8. /// directly from your code. This API may change or be removed in future releases.
  9. /// </summary>
  10. public class AccessDeniedModel : PageModel
  11. {
  12. /// <summary>
  13. /// This API supports the ASP.NET Core Identity default UI infrastructure and is not intended to be used
  14. /// directly from your code. This API may change or be removed in future releases.
  15. /// </summary>
  16. public void OnGet()
  17. {
  18. }
  19. }