UNPKG

intervention-pages

Version:
18 lines (17 loc) 496 B
import { ModelsBase } from '../../common/models/models.base'; export class ProgrammeDocDates extends ModelsBase { constructor(intervention) { super(); this.start = ''; this.end = ''; this.setObjProperties(intervention); } } export class InterventionDatesPermissions extends ModelsBase { constructor(permissions) { super(); this.start = true; this.end = true; this.setObjProperties(permissions); } }