aspnetcore/samples/Identity.ExternalClaims/Pages/Account/Lockout.cshtml.cs

17 lines
296 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace Identity.ExternalClaims.Pages.Account
{
public class LockoutModel : PageModel
{
public void OnGet()
{
}
}
}