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

24 lines
339 B
C++

#ifndef _TG_AUDIO_H_
#define _TG_AUDIO_H_
#include <json/json.h>
#include <string>
namespace Telegram {
class Audio {
public:
Audio(Json::Value);
private:
std::string file_id;
Json::Int64 duration;
std::string performer;
std::string title;
std::string mime_type;
Json::Int64 file_size;
};
}
#endif