summaryrefslogtreecommitdiffstats
path: root/common/domain/contact.fbs
diff options
context:
space:
mode:
Diffstat (limited to 'common/domain/contact.fbs')
-rw-r--r--common/domain/contact.fbs10
1 files changed, 9 insertions, 1 deletions
diff --git a/common/domain/contact.fbs b/common/domain/contact.fbs
index 34fb1d6..d941d5a 100644
--- a/common/domain/contact.fbs
+++ b/common/domain/contact.fbs
@@ -1,9 +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;
6 emails: [string]; 11 firstname:string;
12 lastname:string;
13 addressbook:string;
14 emails: [ContactEmail];
7 vcard: string; 15 vcard: string;
8} 16}
9 17