mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
22 lines
277 B
C
22 lines
277 B
C
|
#ifndef USER_H
|
||
|
#define USER_H
|
||
|
|
||
|
#include "core/object.h"
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
class User : public Object {
|
||
|
public:
|
||
|
int id;
|
||
|
std::string name;
|
||
|
std::string email;
|
||
|
int rank;
|
||
|
std::string pre_salt;
|
||
|
std::string post_salt;
|
||
|
std::string password_hash;
|
||
|
|
||
|
User();
|
||
|
~User();
|
||
|
};
|
||
|
|
||
|
#endif
|