KissCount/src/model/Operation.h

19 lines
273 B
C
Raw Normal View History

#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