Files
mear/app/src/main/cpp/model/User.h
T
2019-09-26 22:02:09 -04:00

19 lines
212 B
C++

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