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

10 lines
205 B
TypeScript

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