mirror of
https://github.com/jcreek/EstimationPoker.git
synced 2026-07-12 18:43:47 +00:00
12 lines
197 B
TypeScript
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;
|
|
}
|
|
}
|