summaryrefslogtreecommitdiffstats
path: root/common/domain/mail.fbs
blob: 654f49c3cedad5f2d9b18b00eb47042fe80acf19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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";