Adding c++ to the mix

This commit is contained in:
kdeng00
2019-09-26 22:02:09 -04:00
parent 6b68afad9b
commit 356f75d0c5
9 changed files with 299 additions and 128 deletions
+18
View File
@@ -0,0 +1,18 @@
//
// 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