Show account errors warning

This commit is contained in:
M66B
2022-02-18 21:14:43 +01:00
parent f672fe9977
commit 59f0db8d25
4 changed files with 38 additions and 12 deletions

View File

@@ -44,6 +44,7 @@ public class TupleFolderEx extends EntityFolder implements Serializable {
public String accountCategory;
public Integer accountColor;
public String accountState;
public String accountError;
public int rules;
public int messages;
public int content;
@@ -74,6 +75,7 @@ public class TupleFolderEx extends EntityFolder implements Serializable {
Objects.equals(this.accountCategory, other.accountCategory) &&
Objects.equals(this.accountColor, other.accountColor) &&
Objects.equals(this.accountState, other.accountState) &&
Objects.equals(this.accountError, other.accountError) &&
this.rules == other.rules &&
this.messages == other.messages &&
this.content == other.content &&