favorites/destroyを叩くやつ

This commit is contained in:
keita
2021-02-18 16:46:15 +09:00
parent 055ee555b1
commit 10eb11f3f5
5 changed files with 36 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
#ifndef COCOATWEET_API_FAVORITE_DESTROY_H_
#define COCOATWEET_API_FAVORITE_DESTROY_H_
#include <cocoatweet/api/interface/postInterface.h>
namespace CocoaTweet::API::Favorites {
class Destroy : public CocoaTweet::API::Interface::postInterface {
public:
Destroy();
void id(const std::string& _id);
private:
};
} // namespace CocoaTweet::API::Favorites
#endif