Added folder display name

This commit is contained in:
M66B
2018-09-19 17:47:03 +00:00
parent c481754dee
commit 07f6d33efd
14 changed files with 1065 additions and 20 deletions

View File

@@ -23,6 +23,7 @@ public class TupleMessageEx extends EntityMessage {
public String accountName;
public Integer accountColor;
public String folderName;
public String folderDisplay;
public String folderType;
public boolean threaded;
public int count;
@@ -38,6 +39,7 @@ public class TupleMessageEx extends EntityMessage {
(this.accountName == null ? other.accountName == null : this.accountName.equals(other.accountName)) &&
(this.accountColor == null ? other.accountColor == null : this.accountColor.equals(other.accountColor)) &&
this.folderName.equals(other.folderName) &&
(this.folderDisplay == null ? other.folderDisplay == null : this.folderDisplay.equals(other.folderDisplay)) &&
this.folderType.equals(other.folderType) &&
this.threaded == other.threaded &&
this.count == other.count &&