Files
rent-a-car/RentACar/WebApp/Areas/Identity/Pages/Account/AccessDenied.cshtml.cs
2022-04-04 22:48:32 +03:00

18 lines
303 B
C#

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