Able to retrieve an access token. Next implement fetching all songs. I left a TODO.
This commit was merged in pull request #56.
This commit is contained in:
@@ -5,11 +5,14 @@
|
||||
#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
|
||||
{
|
||||
User() = default;
|
||||
User(const std::string& user, const std::string& pass) :
|
||||
username(user), password(pass) { }
|
||||
|
||||
std::string username;
|
||||
std::string password;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user