accountant-ui/src/operations/operation.ts

16 lines
295 B
TypeScript
Raw Normal View History

2017-07-29 17:51:44 +02:00
// vim: set tw=80 ts=2 sw=2 sts=2:
export class Operation {
2017-07-30 13:15:16 +02:00
id: number;
operation_date: string;
label: string;
value: number;
category: string;
scheduled_operation_id: number;
account_id: number;
balance: number;
confirmed: boolean;
pointed: boolean;
cancelled: boolean
2017-07-29 17:51:44 +02:00
}