Simplify leave deleted

This commit is contained in:
M66B
2021-08-09 08:06:55 +02:00
parent 982eeb7043
commit ceacbf13fc
7 changed files with 2571 additions and 97 deletions

View File

@@ -38,6 +38,7 @@ public class TupleMessageEx extends EntityMessage {
public String accountName;
public Integer accountColor;
public boolean accountNotify;
public boolean accountLeaveDeleted;
public boolean accountAutoSeen;
public String folderName;
public Integer folderColor;
@@ -123,6 +124,7 @@ public class TupleMessageEx extends EntityMessage {
Objects.equals(this.accountName, other.accountName) &&
Objects.equals(this.accountColor, other.accountColor) &&
this.accountNotify == other.accountNotify &&
this.accountLeaveDeleted == other.accountLeaveDeleted &&
this.accountAutoSeen == other.accountAutoSeen &&
this.folderName.equals(other.folderName) &&
Objects.equals(this.folderDisplay, other.folderDisplay) &&