mirror of
https://github.com/jcreek/EstimationPoker.git
synced 2026-07-13 02:53:46 +00:00
feat(*): Add server classes
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user