This commit is contained in:
Askar Akhmetkhanov
2024-09-28 00:12:00 +03:00
parent 2a881f3920
commit 3fb107fd8b
10 changed files with 864 additions and 125 deletions
+6 -2
View File
@@ -1,3 +1,7 @@
export default class User {
}
constructor(id, name) {
this.id = id;
this.name = name;
this.status = "online";
}
}