mirror of
https://github.com/jcreek/EstimationPoker.git
synced 2026-07-13 02:53:46 +00:00
feat(*): Add server classes
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user