19 lines
273 B
C
19 lines
273 B
C
|
#ifndef OPERATION_H
|
||
|
#define OPERATION_H
|
||
|
|
||
|
class Operation {
|
||
|
public:
|
||
|
wxString id;
|
||
|
unsigned int day;
|
||
|
unsigned int month;
|
||
|
unsigned int year;
|
||
|
double amount;
|
||
|
wxString description;
|
||
|
wxString category;
|
||
|
bool fix_cost;
|
||
|
wxString account;
|
||
|
bool checked;
|
||
|
} ;
|
||
|
|
||
|
#endif
|