mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
11 lines
260 B
C#
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() {}
|
|
}
|
|
} |