export class Player { socketId: string; userName?: string; constructor(socketId: string) { this.socketId = socketId; } }