Files
tsclass/ts/finance/expense.ts
2018-07-22 18:20:22 +02:00

15 lines
292 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[];
contactRef: string;
accountRef: string;
}