LibTgBotPP/include/Telegram/Venue.h
2016-04-30 07:18:32 +02:00

23 lines
296 B
C++

#ifndef _TG_VENUE_H_
#define _TG_VENUE_H_
#include <string>
#include <Telegram/Location.h>
namespace Telegram {
class Venue {
public:
Venue(Json::Value);
private:
Location *location;
std::string title;
std::string address;
std::string foursquare_id;
};
}
#endif