student-response.dao.ts 343 B
export class StudentResponseDao {
username: String;
paperId: String;
questionId: String;
answerText: String;
constructor(username: String, paperId: String, questionId: String, answerText: String) {
this.username = username;
this.paperId = paperId;
this.questionId = questionId;
this.answerText = answerText;
}
}