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

11 lines
264 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 ResetPasswordConfirmationModel : PageModel
{
2020-08-05 21:00:35 +01:00
public void OnGet() {}
2020-05-24 02:12:11 +01:00
}
}