accountant-ui/src/operations/operation.ts

11 lines
191 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 {
id: number;
operation_date: string;
label: string;
value: number;
category: string;
2017-07-29 22:27:25 +02:00
account_id: number;
2017-07-29 17:51:44 +02:00
}