Files
tsclass/ts/finance/expense.ts
2018-07-11 21:42:04 +02:00

16 lines
307 B
TypeScript

import { IInvoice } from './invoice';
import { IContact } from '../business/contact';
export interface IExpenseItem {
amount: number;
taxPercentage: number;
}
export interface IExpense {
voucherFile?: any
expenseItems: IExpenseItem[];
pdfFile: any;
contactRef: string;
accountRef: string;
}