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

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

root_type Contact;
file_identifier "AKFB";