From bbbda3fe9444eba6795a5490da0425cdf8f26361 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Tue, 8 Sep 2015 21:08:54 +0200 Subject: Added support for mails to akonadi and the dummyresource. Adding new types definitely needs to become easier. --- common/domain/mail.fbs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 common/domain/mail.fbs (limited to 'common/domain/mail.fbs') 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 @@ +namespace Akonadi2.ApplicationDomain.Buffer; + +table Mail { + uid:string; + sender:string; + senderName:string; + subject:string; + date:string; + unread:bool = false; + important:bool = false; +} + +root_type Mail; +file_identifier "AKFB"; -- cgit v1.2.3