mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-05-04 15:03:59 +02:00
24 lines
531 B
C++
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;
|
|
};
|