AyuGramDesktop/Telegram/SourceFiles/ayu/database/entities.h
ZavaruKitsu 0a10adfdfd fix: allow up to 100 recent stickers
fix: insert copyright
2023-07-01 13:55:32 +03:00

24 lines
531 B
C++

// 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 <string>
// https://github.com/AyuGram/AyuGram4A/blob/main/TMessagesProj/src/main/java/com/radolyn/ayugram/database/entities/EditedMessage.java
class EditedMessage {
public:
long userId;
long dialogId;
long messageId;
std::string text;
bool isDocument;
std::string path;
long date;
};