intervention-pages
Version:
22 lines (21 loc) • 708 B
JavaScript
import { ModelsBase } from '../../common/models/models.base';
export class TechnicalDetails extends ModelsBase {
constructor(intervention) {
super();
this.technical_guidance = '';
this.capacity_development = '';
this.other_partners_involved = '';
this.other_info = '';
this.setObjProperties(intervention);
}
}
export class TechnicalDetailsPermissions extends ModelsBase {
constructor(permissions) {
super();
this.technical_guidance = true;
this.capacity_development = true;
this.other_partners_involved = true;
this.other_info = true;
this.setObjProperties(permissions);
}
}