workadventure/front/src/Connexion/ConnectedUser.ts
kharhamel 60606947ab temp
2020-04-19 20:58:02 +02:00

17 lines
382 B
TypeScript

export class ConnectedUser {
id: string;
name: string;
email: string;
x: number;
y: number;
roomId: string
constructor( id: string,name: string, email: string, x: number, y: number) {
this.id = id;
this.name = name;
this.email = email;
this.x = x;
this.y = y;
this.roomId = "THECODINGMACHINE";
}
}