Show number of messages on server

This commit is contained in:
M66B
2019-03-09 08:20:46 +00:00
parent 2ba77f3b5e
commit 5c8472bd3c
8 changed files with 1578 additions and 3 deletions

View File

@@ -86,6 +86,8 @@ public class EntityFolder implements Serializable {
public Boolean unified = false;
@NonNull
public Boolean notify = false;
public Integer total; // messages on server
public String[] keywords;
@NonNull
@@ -255,6 +257,7 @@ public class EntityFolder implements Serializable {
this.hide == other.hide &&
this.unified == other.unified &&
this.notify == other.notify &&
Objects.equals(this.total, other.total) &&
Helper.equal(this.keywords, other.keywords) &&
Objects.equals(this.tbd, other.tbd) &&
Objects.equals(this.state, other.state) &&