You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
299 B

#ifndef _TG_PHOTOSIZE_H_
#define _TG_PHOTOSIZE_H_
#include <json/json.h>
#include <string>
namespace Telegram {
class PhotoSize {
public:
PhotoSize(Json::Value);
private:
std::string file_id;
Json::Int64 width;
Json::Int64 height;
Json::Int64 file_size;
};
}
#endif