blob: f14e9f1b62a83ede03411317e518080c6c984ab9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
namespace Sink.ApplicationDomain.Buffer;
table Mail {
uid:string;
folder:string;
sender:string;
senderName:string;
subject:string;
date:string;
unread:bool = false;
important:bool = false;
mimeMessage:string;
draft:bool = false;
trash:bool = false;
sent:bool = false;
messageId:string;
parentMessageId:string;
}
root_type Mail;
file_identifier "AKFB";
|