AccessDenied.cshtml.cs 857 B

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