diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/domain/applicationdomaintype.h | 1 | ||||
-rw-r--r-- | common/domain/mail.fbs | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/common/domain/applicationdomaintype.h b/common/domain/applicationdomaintype.h index 72ac480..12a9e56 100644 --- a/common/domain/applicationdomaintype.h +++ b/common/domain/applicationdomaintype.h | |||
@@ -210,6 +210,7 @@ struct SINK_EXPORT Mail : public Entity { | |||
210 | SINK_REFERENCE_PROPERTY(Folder, Folder, folder); | 210 | SINK_REFERENCE_PROPERTY(Folder, Folder, folder); |
211 | SINK_BLOB_PROPERTY(MimeMessage, mimeMessage); | 211 | SINK_BLOB_PROPERTY(MimeMessage, mimeMessage); |
212 | SINK_PROPERTY(bool, Draft, draft); | 212 | SINK_PROPERTY(bool, Draft, draft); |
213 | SINK_PROPERTY(bool, Trash, trash); | ||
213 | }; | 214 | }; |
214 | 215 | ||
215 | /** | 216 | /** |
diff --git a/common/domain/mail.fbs b/common/domain/mail.fbs index addc7c4..3a84ca1 100644 --- a/common/domain/mail.fbs +++ b/common/domain/mail.fbs | |||
@@ -11,6 +11,7 @@ table Mail { | |||
11 | important:bool = false; | 11 | important:bool = false; |
12 | mimeMessage:string; | 12 | mimeMessage:string; |
13 | draft:bool = false; | 13 | draft:bool = false; |
14 | trash:bool = false; | ||
14 | } | 15 | } |
15 | 16 | ||
16 | root_type Mail; | 17 | root_type Mail; |