mirror of
https://github.com/jcreek/EstimationPoker.git
synced 2026-07-13 02:53:46 +00:00
feat(*): Add server classes
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user