mirror of
https://github.com/jcreek/aspnetcore5-with-postgres-identity-serilog-elasticsearch.git
synced 2026-07-13 10:53:44 +00:00
19 lines
368 B
C#
19 lines
368 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
|
|
namespace My.ProjectName.Areas.Identity.Pages.Account
|
|
{
|
|
[AllowAnonymous]
|
|
public class LockoutModel : PageModel
|
|
{
|
|
public void OnGet()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|