2018-07-22 18:20:22 +02:00
|
|
|
import { TCurrency } from './currency';
|
2018-07-22 23:01:56 +02:00
|
|
|
import { ITransaction } from './transaction';
|
2018-07-22 18:19:47 +02:00
|
|
|
|
|
|
|
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
|
|
|
}
|