KissCount/src/model/Account.h

18 lines
207 B
C
Raw Normal View History

#ifndef ACCOUNT_H
#define ACCOUNT_H
#include <list>
#include <map>
#include <wx/wx.h>
class Account {
public:
wxString id;
wxString name;
wxString number;
bool shared;
bool _default;
};
#endif