Files
mear/app/src/main/cpp/model/User.h
T

19 lines
332 B
C++

//
// Created by brahmix on 9/26/19.
//
#ifndef MEAR_USER_H
#define MEAR_USER_H
//#include "../../../../../../../../Android/Sdk/ndk/20.0.5594570/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/c++/v1/string"
namespace model {
struct User
{
std::string username;
std::string password;
};
}
#endif //MEAR_USER_H