// // Created by brahmix on 9/26/19. // #ifndef MEAR_USER_H #define MEAR_USER_H #include namespace model { struct User { std::string username; std::string password; }; } #endif //MEAR_USER_H