argos/dmp-frontend/src/app/core/model/help-content/active-topic-questions.ts

11 lines
200 B
TypeScript

/**
* Created by stefania on 4/26/17.
*/
import { Topic } from './topic';
import { Question } from './question';
export interface ActiveTopicQuestions {
topic: Topic;
questionList: Question[];
}