20 lines
263 B
C++
20 lines
263 B
C++
//
|
|
// Created by dongl on 23-5-16.
|
|
//
|
|
|
|
#ifndef IM_USER_H
|
|
#define IM_USER_H
|
|
|
|
#include <string>
|
|
|
|
class User : QObject {
|
|
public:
|
|
uint64_t account;
|
|
std::string username;
|
|
uint64_t phone;
|
|
std::string email;
|
|
std::string token;
|
|
};
|
|
|
|
#endif //IM_USER_H
|