blob: 84417b6ee046981e5d71ee6a8983c46ccaf85c21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "tgbot/types/ChatBoostSourcePremium.h"
#include "tgbot/types/ChatBoostSourceGiftCode.h"
#include "tgbot/types/ChatBoostSourceGiveaway.h"
#include <string>
using namespace TgBot;
const std::string ChatBoostSourcePremium::SOURCE = "premium";
const std::string ChatBoostSourceGiftCode::SOURCE = "gift_code";
const std::string ChatBoostSourceGiveaway::SOURCE = "giveaway";
|