Skip to content

Commit

Permalink
fixed missing array type in question.ts issue
Browse files Browse the repository at this point in the history
  • Loading branch information
milansismanovic committed Sep 21, 2019
1 parent dc09fd8 commit 4a69590
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified .vs/slnx.sqlite
Binary file not shown.
2 changes: 1 addition & 1 deletion apps/ch-maker-quiz/src/app/question.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export class Question{
question: String;
answers: { id: Number; answerText: String;};
answers: { id: Number; answerText: String;}[];
correctAnswer: number;
}

0 comments on commit 4a69590

Please sign in to comment.