feat(*): Add server classes

This commit is contained in:
Josh Creek
2023-07-09 21:31:42 +00:00
parent 59b9d0214d
commit 664e93ebff
5 changed files with 103 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
export class User {
userId: string;
name: string;
estimate: number | null;
constructor(userId: string, name: string) {
this.userId = userId;
this.name = name;
this.estimate = null;
}
}