Show if folder has active rules

This commit is contained in:
M66B
2019-06-21 08:39:36 +02:00
parent 08c37785ad
commit f3e5159168
6 changed files with 114 additions and 62 deletions

View File

@@ -42,6 +42,7 @@ public class TupleFolderEx extends EntityFolder implements Serializable {
public String accountName;
public Integer accountColor;
public String accountState;
public int rules;
public int messages;
public int content;
public int unseen;
@@ -68,6 +69,7 @@ public class TupleFolderEx extends EntityFolder implements Serializable {
Objects.equals(this.accountName, other.accountName) &&
Objects.equals(this.accountColor, other.accountColor) &&
Objects.equals(this.accountState, other.accountState) &&
this.rules == other.rules &&
this.messages == other.messages &&
this.content == other.content &&
this.unseen == other.unseen &&