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.fbs14
1 files changed, 14 insertions, 0 deletions
diff --git a/common/domain/mail.fbs b/common/domain/mail.fbs
new file mode 100644
index 0000000..654f49c
--- /dev/null
+++ b/common/domain/mail.fbs
@@ -0,0 +1,14 @@
1namespace Akonadi2.ApplicationDomain.Buffer;
2
3table Mail {
4 uid:string;
5 sender:string;
6 senderName:string;
7 subject:string;
8 date:string;
9 unread:bool = false;
10 important:bool = false;
11}
12
13root_type Mail;
14file_identifier "AKFB";