add video call room

This commit is contained in:
jojo aquino 2025-02-25 20:33:20 +00:00
parent c5c2ac29cf
commit b313d21a11
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,4 @@
@page
@model EnotaryoPH.Web.Pages.Participant.VideoCall.RoomModel
@{
}

View File

@ -0,0 +1,12 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace EnotaryoPH.Web.Pages.Participant.VideoCall
{
public class RoomModel : PageModel
{
public void OnGet()
{
}
}
}