From e1430017eb60976610f4963cd770116a4a486c2e Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Thu, 23 Mar 2017 14:02:15 +0100 Subject: New properties --- common/domain/contact.fbs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'common/domain/contact.fbs') 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 @@ namespace Sink.ApplicationDomain.Buffer; +table ContactEmail { + type: int; + email: string; +} + table Contact { uid:string; fn:string; + firstname:string; + lastname:string; addressbook:string; - emails: [string]; + emails: [ContactEmail]; vcard: string; } -- cgit v1.2.3