mirror of
https://github.com/jcreek/EstimationPoker.git
synced 2026-07-12 18:43:47 +00:00
14 lines
297 B
TypeScript
14 lines
297 B
TypeScript
export class JoinRoomMessage {
|
|
type: string;
|
|
roomId: string;
|
|
userId: string;
|
|
name: string;
|
|
|
|
constructor(roomId: string, userId: string, name: string) {
|
|
this.type = 'join-room';
|
|
this.roomId = roomId;
|
|
this.userId = userId;
|
|
this.name = name;
|
|
}
|
|
}
|
|
|