source: PostgreSqlDotnetCore/Areas/Identity/Pages/Account/AccessDenied.cshtml.cs@ 2aea0fd

main
Last change on this file since 2aea0fd was 2aea0fd, checked in by ElenaMoskova <elena.moskova99@…>, 2 months ago

init commit Elena

  • Property mode set to 100644
File size: 872 bytes
Line 
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
5using Microsoft.AspNetCore.Mvc.RazorPages;
6
7namespace PostgreSqlDotnetCore.Areas.Identity.Pages.Account
8{
9 /// <summary>
10 /// This API supports the ASP.NET Core Identity default UI infrastructure and is not intended to be used
11 /// directly from your code. This API may change or be removed in future releases.
12 /// </summary>
13 public class AccessDeniedModel : 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}
Note: See TracBrowser for help on using the repository browser.