18 lines
151 B
C++
18 lines
151 B
C++
#ifndef USER_H_
|
|
#define USER_H_
|
|
|
|
#include<string>
|
|
|
|
namespace Models
|
|
{
|
|
|
|
struct User
|
|
{
|
|
std::string username;
|
|
std::string password;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|