19 lines
212 B
C++
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
|