10 lines
288 B
C#
10 lines
288 B
C#
namespace EnotaryoPH.Web.Pages.Participant.VideoCall
|
|
{
|
|
public class RoomParticipantViewModel
|
|
{
|
|
public string DisplayName { get; set; }
|
|
public string Id { get; set; }
|
|
public string RoomUserID { get; set; }
|
|
public string Type { get; set; }
|
|
}
|
|
} |