summaryrefslogtreecommitdiffstats
path: root/common/domain/contact.fbs
blob: e689756144b920a112dd8bc82145efecb68fa284 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace Sink.ApplicationDomain.Buffer;

table ContactEmail {
    type: int;
    email: string;
}

table Contact {
  uid:string;
  fn:string;
  firstname:string;
  lastname:string;
  addressbook:string;
  emails: [ContactEmail];
  vcard: string;
  photo: string;
}

root_type Contact;
file_identifier "AKFB";