export abstract class InvoiceItemBase { abstract InvoiceNo: string; abstract Amount: number; abstract Currency: string; }