AyuGramDesktop/Telegram/SourceFiles/ayu/database/entities.h
2023-07-09 18:09:01 +00:00

25 lines
510 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;
};