mirror of
https://github.com/jcreek/aspnetcore5-with-postgres-identity-serilog-elasticsearch.git
synced 2026-07-12 18:33:45 +00:00
18 lines
311 B
C#
18 lines
311 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
|
|
namespace My.ProjectName.Areas.Identity.Pages.Account
|
|
{
|
|
public class AccessDeniedModel : PageModel
|
|
{
|
|
public void OnGet()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|
|
|