// This is the source code of AyuGram for Desktop. // // We do not and cannot prevent the use of our code, // but be respectful and credit the original author. // // Copyright @Radolyn, 2023 #pragma once #include #define ID long long template class AyuMessageBase { public: ID fakeId; ID userId; ID dialogId; ID groupedId; ID peerId; ID fromId; ID topicId; int messageId; int date; int flags; int editDate; int views; int fwdFlags; ID fwdFromId; std::string fwdName; int fwdDate; std::string fwdPostAuthor; int replyFlags; int replyMessageId; ID replyPeerId; int replyTopId; bool replyForumTopic; int entityCreateDate; std::string text; std::vector textEntities; std::string mediaPath; std::string hqThumbPath; int documentType; std::vector documentSerialized; std::vector thumbsSerialized; std::vector documentAttributesSerialized; std::string mimeType; }; using DeletedMessage = AyuMessageBase; using EditedMessage = AyuMessageBase; class DeletedDialog { public: ID fakeId; ID userId; ID dialogId; ID peerId; int topMessage; int lastMessageDate; int flags; int entityCreateDate; };