2025-04-03 22:36:51 +01:00

10 lines
289 B
C#

namespace EnotaryoPH.Web.Pages.Participant.VideoCall
{
public class RoomParticipantViewModel
{
public string DisplayName { get; set; }
public string UID { get; set; }
public string RoomUserID { get; set; }
public string Type { get; set; }
}
}