This commit is contained in:
Mal
2021-02-28 01:01:24 +01:00
parent 82456d8df0
commit 7ad63432d1
83 changed files with 2907 additions and 41 deletions

7
src/app/chat.message.ts Normal file
View File

@@ -0,0 +1,7 @@
export interface ChatMessage
{
userId: number;
username: string;
message: string;
datetime: string;
}