mirror of
https://github.com/jcreek/EstimationPoker.git
synced 2026-07-13 11:03:46 +00:00
14 lines
285 B
TypeScript
14 lines
285 B
TypeScript
export class ChangeEstimateMessage {
|
|
type: string;
|
|
roomId: string;
|
|
userId: string;
|
|
estimate: number;
|
|
|
|
constructor(roomId: string, userId: string, estimate: number) {
|
|
this.type = 'change-estimate';
|
|
this.roomId = roomId;
|
|
this.userId = userId;
|
|
this.estimate = estimate;
|
|
}
|
|
}
|