using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.RazorPages; namespace EnotaryoPH.Web.Pages.Participant.Registration.Steps { public class TakeSelfieModel : PageModel { public void OnGet() { } [BindProperty(SupportsGet = true)] public Guid Transaction_UID { get; set; } } }