feat: change message and contac list attribute

This commit is contained in:
semenov
2025-08-04 09:23:03 +03:00
parent 4e1592575e
commit 501b84b13a
25 changed files with 134 additions and 41 deletions

View File

@@ -77,6 +77,15 @@ public:
QString fromId;
QString toId;
QString Text;
QString UserType;
ClientMessage(){}
ClientMessage(QString fromId, QString toId, QString text, QString UserType)
{
this->fromId = fromId;
this->toId = toId;
this->Text = text;
this->UserType = UserType;
}
};
class ServerTask