import { Base } from './base'; export class CompanyMin extends Base { companyID?: string; companyName?: string; taxationIdentificationNumber?: string; ref?: string; constructor(data: any | null = null) { super(); this.companyID = ''; this.companyName = ''; this.taxationIdentificationNumber = ''; this.ref = ''; this.load(data); } }