Files
tsclass/ts/finance/checkingaccount.ts

9 lines
196 B
TypeScript
Raw Normal View History

2018-07-22 18:20:22 +02:00
import { TCurrency } from './currency';
2018-07-22 23:01:56 +02:00
import { ITransaction } from './transaction';
export interface ICheckingAccount {
name: string;
currency: TCurrency;
2018-07-25 22:13:19 +02:00
transactions: ITransaction[];
2018-07-22 18:20:22 +02:00
}