summaryrefslogtreecommitdiffstats
path: root/common/domain/mail.fbs
diff options
context:
space:
mode:
Diffstat (limited to 'common/domain/mail.fbs')
-rw-r--r--common/domain/mail.fbs15
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 @@
1namespace Akonadi2.ApplicationDomain.Buffer;
2
3table 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
14root_type Mail;
15file_identifier "AKFB";