summaryrefslogtreecommitdiffstats
path: root/common/domain/contact.fbs
blob: 7d7f797517ce7135a4e23b54d3884cd2ddd4e248 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Sink.ApplicationDomain.Buffer;

table Contact {
  uid:string;
  fn:string;
  addressbook:string;
  emails: [string];
  vcard: string;
}

root_type Contact;
file_identifier "AKFB";