accountant-ui/src/accounts/account.ts

16 lines
266 B
TypeScript
Raw Normal View History

2017-07-13 16:54:09 +02:00
// vim: set tw=80 ts=2 sw=2 sts=2 :
import { AccountBalances } from './accountBalances';
export class Account {
id: number;
name: string;
authorized_overdraft: number;
balances: AccountBalances;
constructor() {
this.authorized_overdraft = 0;
}
2017-07-13 16:54:09 +02:00
}