source: PostgreSqlDotnetCore/Areas/Identity/Pages/Account/Lockout.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: 930 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.Authorization;
6using Microsoft.AspNetCore.Mvc.RazorPages;
7
8namespace PostgreSqlDotnetCore.Areas.Identity.Pages.Account
9{
10 /// <summary>
11 /// This API supports the ASP.NET Core Identity default UI infrastructure and is not intended to be used
12 /// directly from your code. This API may change or be removed in future releases.
13 /// </summary>
14 [AllowAnonymous]
15 public class LockoutModel : PageModel
16 {
17 /// <summary>
18 /// This API supports the ASP.NET Core Identity default UI infrastructure and is not intended to be used
19 /// directly from your code. This API may change or be removed in future releases.
20 /// </summary>
21 public void OnGet()
22 {
23 }
24 }
25}
Note: See TracBrowser for help on using the repository browser.