Skip to content
Snippets Groups Projects
minute-paper-wrapper.dao.ts 316 B
import {MinutePaperDao} from './minute-paper.dao';
import {QuestionDao} from './question.dao';

export class MinutePaperWrapperDao {

  paper: MinutePaperDao;
  questions: QuestionDao[];

  constructor(paper: MinutePaperDao, questions: QuestionDao[]) {
    this.paper = paper;
    this.questions = questions;
  }
}