#ifndef USER_H_ #define USER_H_ #include namespace Models { struct User { std::string username; std::string password; }; } #endif