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

11 lines
200 B
TypeScript
Raw Normal View History

2018-02-16 08:45:18 +01:00
/**
* Created by stefania on 4/26/17.
*/
2018-10-05 17:00:54 +02:00
import { Topic } from './topic';
import { Question } from './question';
2018-02-16 08:45:18 +01:00
export interface ActiveTopicQuestions {
2018-10-05 17:00:54 +02:00
topic: Topic;
questionList: Question[];
}