LibTgBotPP/include/Telegram/Venue.h

23 lines
296 B
C
Raw Normal View History

2016-04-29 19:38:14 +02:00
#ifndef _TG_VENUE_H_
#define _TG_VENUE_H_
#include <string>
#include <Telegram/Location.h>
2016-04-29 19:38:14 +02:00
namespace Telegram {
class Venue {
public:
Venue(Json::Value);
private:
Location *location;
std::string title;
std::string address;
std::string foursquare_id;
};
}
#endif