Files
marechai/Marechai/Areas/Identity/Pages/Account/ForgotPasswordConfirmation.cshtml.cs

11 lines
261 B
C#
Raw Normal View History

2020-05-24 02:12:11 +01:00
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace Marechai.Areas.Identity.Pages.Account
{
[AllowAnonymous]
public class ForgotPasswordConfirmation : PageModel
{
public void OnGet() { }
}
}