упразднение старого объекта аккаунта

This commit is contained in:
2025-02-18 20:14:14 +03:00
parent 794097f81f
commit 1b4b375f39
28 changed files with 135 additions and 193 deletions

View File

@@ -1,7 +1,7 @@
package _VisualDVM;
import Common.CommonConstants;
import _VisualDVM.ComponentsServer.UserAccount.UserAccount;
import _VisualDVM.GlobalData.Account.AccountRole;
import _VisualDVM.ComponentsServer.UserAccount.AccountRole;
import _VisualDVM.Passes.PassCode;
import com.google.gson.annotations.Expose;
@@ -13,8 +13,6 @@ public class NormalProperties extends VisualDVMProperties {
public String Email = "";
@Expose
public String Name = "";
@Expose
public AccountRole Role = AccountRole.Undefined;
//--->
@Expose
public String Workspace = "";
@@ -173,7 +171,6 @@ public class NormalProperties extends VisualDVMProperties {
public void SynchronizeAccount(UserAccount account){
Name = account.name;
Email = account.email;
Role = account.role;
Update();
}
}