Files
EstimationPoker/server/classes/User.ts
T
2023-07-09 21:31:42 +00:00

12 lines
197 B
TypeScript

export class User {
userId: string;
name: string;
estimate: number | null;
constructor(userId: string, name: string) {
this.userId = userId;
this.name = name;
this.estimate = null;
}
}