13 lines
330 B
C#
13 lines
330 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
|
|
namespace EnotaryoPH.Web.Pages.Participant.Registration
|
|
{
|
|
public class IndexModel : PageModel
|
|
{
|
|
public IActionResult OnGet() => Page();
|
|
|
|
[BindProperty(SupportsGet = true)]
|
|
public string InvitationCode { get; set; }
|
|
}
|
|
} |