summaryrefslogtreecommitdiffstats
path: root/common/domain/contact.fbs
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-03-23 14:02:15 +0100
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-03-23 14:02:15 +0100
commite1430017eb60976610f4963cd770116a4a486c2e (patch)
tree56d7551e39c6d83ac25aa6ea49f9e11ffcdcc07f /common/domain/contact.fbs
parent86045e308c10c60cd7c4339d305cee1acb084760 (diff)
downloadsink-e1430017eb60976610f4963cd770116a4a486c2e.tar.gz
sink-e1430017eb60976610f4963cd770116a4a486c2e.zip
New properties
Diffstat (limited to 'common/domain/contact.fbs')
-rw-r--r--common/domain/contact.fbs9
1 files changed, 8 insertions, 1 deletions
diff --git a/common/domain/contact.fbs b/common/domain/contact.fbs
index 7d7f797..d941d5a 100644
--- a/common/domain/contact.fbs
+++ b/common/domain/contact.fbs
@@ -1,10 +1,17 @@
1namespace Sink.ApplicationDomain.Buffer; 1namespace Sink.ApplicationDomain.Buffer;
2 2
3table ContactEmail {
4 type: int;
5 email: string;
6}
7
3table Contact { 8table Contact {
4 uid:string; 9 uid:string;
5 fn:string; 10 fn:string;
11 firstname:string;
12 lastname:string;
6 addressbook:string; 13 addressbook:string;
7 emails: [string]; 14 emails: [ContactEmail];
8 vcard: string; 15 vcard: string;
9} 16}
10 17