hanyadikhetvan-dotnethf/HanyadikHetVan/Areas/Identity/Pages/Account/Lockout.cshtml.cs

19 lines
368 B
C#
Raw Normal View History

2021-05-19 17:56:56 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace HanyadikHetVan.Areas.Identity.Pages.Account
{
[AllowAnonymous]
public class LockoutModel : PageModel
{
public void OnGet()
{
}
}
}