blob: 9ef6f87ea1499a515d61a5bc12386fe9f373b863 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef TGBOT_GIVEAWAYCREATED_H
#define TGBOT_GIVEAWAYCREATED_H
#include <memory>
namespace TgBot {
/**
* @brief This object represents a service message about the creation of a scheduled giveaway.
*
* Currently holds no information.
*
* @ingroup types
*/
class GiveawayCreated {
public:
typedef std::shared_ptr<GiveawayCreated> Ptr;
};
}
#endif //TGBOT_GIVEAWAYCREATED_H
|