intervention-pages
Version:
19 lines (18 loc) • 568 B
JavaScript
export class MinimalAgreement {
constructor() {
this.id = null;
this.agreement_number = '';
this.agreement_number_status = '';
this.agreement_type = '';
this.authorized_officers = [];
this.country_programme = null;
this.end = ''; // end date
this.start = '';
this.partner = null;
this.partner_name = '';
this.signed_by_partner_date = '';
this.signed_by_unicef_date = '';
this.special_conditions_pca = false;
this.status = '';
}
}