// // Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022 // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // #pragma once #include "td/telegram/DialogNotificationSettings.h" #include "td/telegram/DraftMessage.h" #include "td/telegram/MessageId.h" #include "td/telegram/td_api.h" #include "td/telegram/telegram_api.h" #include "td/utils/common.h" namespace td { class ForumTopicInfo; class Td; class ForumTopic { bool is_short_ = false; bool is_pinned_ = false; int32 unread_count_ = 0; MessageId last_message_id_; MessageId last_read_inbox_message_id_; MessageId last_read_outbox_message_id_; int32 unread_mention_count_ = 0; int32 unread_reaction_count_ = 0; DialogNotificationSettings notification_settings_; unique_ptr draft_message_; public: ForumTopic() = default; ForumTopic(Td *td, tl_object_ptr &&forum_topic_ptr); bool is_short() const { return is_short_; } td_api::object_ptr get_forum_topic_object(Td *td, const ForumTopicInfo &info) const; }; } // namespace td