Skip to content

Commit

Permalink
feat: question dto 에 socket.id 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
hoeeeeeh committed Nov 30, 2024
1 parent 8bb0700 commit e94af4c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions backend/chatServer/src/event/dto/Question.dto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ class QuestionDto {
msgTime: string = new Date().toISOString();
msgType: OutgoingMessageType = 'question';
questionId: number = -1;
socketId: string = '';
questionDone: boolean = false;
}

Expand Down

0 comments on commit e94af4c

Please sign in to comment.