intervention-pages
Version:
14 lines (13 loc) • 517 B
JavaScript
import { ModelsBase } from '../../common/models/models.base';
// @lajos TO DO: values are populated
// @lajos TO DO: check with backend about cfei_number and humanitarian values, where they shuld come from
export class InterventionOverview extends ModelsBase {
constructor(intervention) {
super();
this.document_type = '';
this.cfei_number = '';
this.contingency_pd = false;
this.humanitarian_flag = false;
this.setObjProperties(intervention);
}
}