connect-admin/src/app/domain/topic.ts

17 lines
266 B
TypeScript

/**
* Created by stefania on 4/26/17.
*/
export interface Topic {
_id: string;
name: string;
description: string;
date: Date;
weight: number;
questionOrder: string;
}
export interface CheckTopic {
topic: Topic;
checked: boolean;
}