ベアラトークンのモデル作成。その他

This commit is contained in:
keita
2022-04-23 20:56:50 +09:00
parent 5eef4a64e6
commit 9f2c61b7e0
10 changed files with 136 additions and 16 deletions
+14
View File
@@ -0,0 +1,14 @@
#include "bearerToken.h"
namespace CocoaTweet::API::Model {
BearerToken::BearerToken() : token_("") {}
BearerToken::BearerToken(const std::string _token)
: token_(_token) {}
const std::string& BearerToken::token() const {
return token_;
}
void BearerToken::token(const std::string& _token) {
token_ = _token;
}
} // namespace CocoaTweet::API::Model