KissCount/model/User.h

18 lines
195 B
C
Raw Normal View History

#ifndef USER_H
#define USER_H
#include <list>
#include "Account.h"
class User
{
private:
unsigned int _id;
wxString _name;
wxString _password;
std::list<Account> _accounts;
};
#endif