diff options
Diffstat (limited to 'common/domain/mail.fbs')
-rw-r--r-- | common/domain/mail.fbs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/common/domain/mail.fbs b/common/domain/mail.fbs new file mode 100644 index 0000000..13aa36d --- /dev/null +++ b/common/domain/mail.fbs | |||
@@ -0,0 +1,15 @@ | |||
1 | namespace Akonadi2.ApplicationDomain.Buffer; | ||
2 | |||
3 | table Mail { | ||
4 | uid:string; | ||
5 | folder:string; | ||
6 | sender:string; | ||
7 | senderName:string; | ||
8 | subject:string; | ||
9 | date:string; | ||
10 | unread:bool = false; | ||
11 | important:bool = false; | ||
12 | } | ||
13 | |||
14 | root_type Mail; | ||
15 | file_identifier "AKFB"; | ||