Favorite/Createのエンドポイント叩くやつ

This commit is contained in:
keita
2021-02-18 16:02:48 +09:00
parent ae2e3bcf9e
commit 8cab7753b2
4 changed files with 59 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#ifndef COCOATWEET_API_FAVORITE_CREATE_H_
#define COCOATWEET_API_FAVORITE_CREATE_H_
#include <cocoatweet/api/interface/postInterface.h>
namespace CocoaTweet::API::Favorites {
class Create : public CocoaTweet::API::Interface::postInterface {
public:
Create();
void id(const std::string& _id);
private:
};
} // namespace CocoaTweet::API::Favorites
#endif