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