intervention-pages
Version:
24 lines (23 loc) • 730 B
JavaScript
import { ModelsBase } from '../../common/models/models.base';
export class PdUnicefDetails extends ModelsBase {
constructor(intervention) {
super();
this.document_type = '';
this.offices = [];
this.sections = [];
this.cluster_names = [];
this.unicef_focal_points = [];
this.unicef_budget_owner = [];
this.setObjProperties(intervention);
}
}
export class PdUnicefDetailsPermissions extends ModelsBase {
constructor(permissions) {
super();
this.unicef_office = true;
this.sections = true;
this.focal_points = true;
this.budget_owner = true;
this.setObjProperties(permissions);
}
}