25 lines
458 B
C++
25 lines
458 B
C++
//
|
|
// Created by dongl on 23-5-6.
|
|
//
|
|
|
|
#ifndef IM2_PO_H
|
|
#define IM2_PO_H
|
|
|
|
#include <string>
|
|
|
|
|
|
class PoUser {
|
|
public:
|
|
PoUser(uint64_t account, const std::string& username, const std::string& password,
|
|
const std::string& password_salt,const std::string& client_info);
|
|
PoUser();
|
|
public:
|
|
uint64_t account;
|
|
std::string username;
|
|
std::string password;
|
|
std::string password_salt;
|
|
std::string client_info;
|
|
};
|
|
|
|
#endif //IM2_PO_H
|