Project

General

Profile

1
/**
2
 * Created by stefania on 4/26/17.
3
 */
4
import { Topic } from './topic';
5
import { Question } from './question';
6

    
7
export interface ActiveTopicQuestions {
8
    topic: Topic;
9
    questionList: Question[];
10
}
(1-1/10)