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

17 lines
242 B
TypeScript
Raw Normal View History

2018-02-16 08:45:18 +01:00
/**
* Created by stefania on 4/26/17.
*/
export interface Topic {
2018-10-05 17:00:54 +02:00
_id: string;
name: string;
description: string;
date: Date;
weight: number;
questionOrder: string;
2018-02-16 08:45:18 +01:00
}
export interface CheckTopic {
2018-10-05 17:00:54 +02:00
topic: Topic;
checked: boolean;
}