Added folder select to count widget

This commit is contained in:
M66B
2023-11-05 10:17:59 +01:00
parent b2f7e97b8c
commit b277eda261
7 changed files with 139 additions and 16 deletions

View File

@@ -26,6 +26,7 @@ import java.util.Objects;
public class TupleMessageStats {
public Long account;
public Long folder;
public Integer unseen;
public Integer notifying;
@@ -34,6 +35,7 @@ public class TupleMessageStats {
if (obj instanceof TupleMessageStats) {
TupleMessageStats other = (TupleMessageStats) obj;
return (Objects.equals(this.account, other.account) &&
Objects.equals(this.folder, other.folder) &&
Objects.equals(this.unseen, other.unseen) &&
Objects.equals(this.notifying, other.notifying));
} else