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

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;
}
}