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

17 lines
242 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;
}