Project

General

Profile

1 61384 k.triantaf
/**
2
 * Created by stefania on 4/26/17.
3
 */
4
export interface Topic {
5
    _id: string;
6
    name: string;
7
    description: string;
8
    date: Date;
9
    weight: number;
10
    questionOrder: string;
11
}
12
13
export interface CheckTopic {
14
    topic: Topic;
15
    checked: boolean;
16
}