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

14 lines
285 B
TypeScript

export class SelectEstimateMessage {
type: string;
roomId: string;
userId: string;
estimate: number;
constructor(roomId: string, userId: string, estimate: number) {
this.type = 'select-estimate';
this.roomId = roomId;
this.userId = userId;
this.estimate = estimate;
}
}