Skip to content

Commit

Permalink
Add missing attrs back
Browse files Browse the repository at this point in the history
  • Loading branch information
camilovegag committed May 15, 2024
1 parent 6579b8e commit c019832
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions packages/api/src/types/QuestionOptionType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ export type QuestionOption = {
optionTitle: string;
optionSubTitle?: string;
accepted: boolean;
voteScore: number;
user: {
group: {
id: string;
name: string;
};
username: string;
firstName?: string;
lastName?: string;
};
};

export type GetQuestionOptionRequest = {
Expand Down

0 comments on commit c019832

Please sign in to comment.