14 lines
275 B
C#
14 lines
275 B
C#
|
2 years ago
|
// Copyright (c) Duende Software. All rights reserved.
|
||
|
|
// See LICENSE in the project root for license information.
|
||
|
|
|
||
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
||
|
|
|
||
|
|
namespace Yavsc.Pages.Account;
|
||
|
|
|
||
|
|
public class AccessDeniedModel : PageModel
|
||
|
|
{
|
||
|
|
public void OnGet()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|