Files
marechai/Marechai/Areas/Identity/Pages/Account/ForgotPasswordConfirmation.cshtml.cs
2020-08-05 21:00:35 +01:00

11 lines
260 B
C#

using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace Marechai.Areas.Identity.Pages.Account
{
[AllowAnonymous]
public class ForgotPasswordConfirmation : PageModel
{
public void OnGet() {}
}
}