#ifndef TGBOT_CHATMEMBERMEMBER_H #define TGBOT_CHATMEMBERMEMBER_H #include "tgbot/types/ChatMember.h" #include namespace TgBot { /** * @brief Represents a chat member that has no additional privileges or restrictions. * * @ingroup types */ class ChatMemberMember : public ChatMember { public: static const std::string STATUS; typedef std::shared_ptr Ptr; ChatMemberMember() { this->status = STATUS; } }; } #endif //TGBOT_CHATMEMBERMEMBER_H