summaryrefslogtreecommitdiffstats
path: root/common/domain/contact.fbs
blob: d941d5ae1eb73da600d154c210d46c3e5137e207 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;
}

root_type Contact;
file_identifier "AKFB";