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

11 lines
264 B
C#

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