import { Base } from './base'; export class EmployeeMin extends Base { email: string; username: string; company: string; employeeNumber: string; objectID: string; constructor(data: any | null = null) { super(); this.email = ''; this.username = ''; this.company = ''; this.employeeNumber = ''; this.objectID = ''; this.load(data); } }