KissCount/model/User.h
Grégory Soutadé ee8d4c0c8f Initial commit
A good base to start working
2010-05-14 15:04:01 +02:00

18 lines
195 B
C++

#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