ref: change message attributes

This commit is contained in:
semenov
2025-08-04 16:37:54 +03:00
parent 501b84b13a
commit 33c7a31143
12 changed files with 62 additions and 53 deletions

View File

@@ -96,13 +96,13 @@ public:
isLoggedIn = value;
}
void setAccessType(QString type)
void setAccessType(UserType type)
{
accessType = type;
userType = type;
}
QString getAccessType()
UserType getAccessType()
{
return accessType;
return userType;
}
@@ -130,7 +130,7 @@ private:
bool isUnity = false;
TypeClientAutorization TypeClient;
QString accessType = "";
UserType userType;
};
#endif // CLIENT_H