mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-24 07:53:52 +02:00
17 lines
339 B
C++
17 lines
339 B
C++
#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;
|
|
};
|