17 lines
329 B
TypeScript
17 lines
329 B
TypeScript
import { IInvoice } from './invoice';
|
|
import { IContact } from '../business/contact';
|
|
|
|
export interface IExpenseItem {
|
|
amount: number;
|
|
taxPercentage: number;
|
|
}
|
|
|
|
export interface IExpense {
|
|
voucherFile?: any;
|
|
date: Date;
|
|
description: string;
|
|
expenseItems: IExpenseItem[];
|
|
contactRef: string;
|
|
accountRef: string;
|
|
}
|