12 lines
256 B
TypeScript
12 lines
256 B
TypeScript
|
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
|
||
|
}
|
||
|
}
|