import { Base } from './base'; import { Address } from './address'; export class Company extends Base { companyID?: string; companyName?: string; taxationIdentificationNumber?: string; logoCompany?: string; companyAddress?: Address; constructor(data: any | null = null) { super(); this.companyID = ''; this.companyName = ''; this.taxationIdentificationNumber = ''; this.logoCompany = ''; this.companyAddress = new Address(); this.load(data); } }