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

9 lines
179 B
TypeScript

import { TCurrency } from './currency';
import { IPayment } from './payment';
export interface ICheckingAccount {
name: string;
currency: TCurrency;
payment: IPayment[];
}