export class lobbyMessage{
id: number;
user: string;
timestamp: string;
content: string;
constructor(text : string){
this.user = "Server"
this.timestamp = new Date().toLocaleString();
this.content = text
}