/
diev
/
stelegramdesktop-tdesktop
Обзор
Документация
Войти
/
diev
/
stelegramdesktop-tdesktop
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
dev
Telegram/SourceFiles/data/data_bot_app.h
27 строк
646 B
John Preston
Handle new 'web_app_setup_settings_button' event.
26 окт 2023, 13:08
26 окт 2023, 13:08
e59a60b
Код
Авторство
О чём код?
/* This file is part of Telegram Desktop, the official desktop application for the Telegram messaging service. For license and copyright information please follow this link: https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL */ #pragma once #include "data/data_photo.h" #include "data/data_document.h" struct BotAppData { BotAppData(not_null<Data::Session*> owner, const BotAppId &id); const not_null<Data::Session*> owner; BotAppId id = 0; PeerId botId = 0; QString shortName; QString title; QString description; PhotoData *photo = nullptr; DocumentData *document = nullptr; uint64 accessHash = 0; uint64 hash = 0; };