diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-03-23 14:02:15 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-03-23 14:02:15 +0100 |
commit | e1430017eb60976610f4963cd770116a4a486c2e (patch) | |
tree | 56d7551e39c6d83ac25aa6ea49f9e11ffcdcc07f /common/domain/contact.fbs | |
parent | 86045e308c10c60cd7c4339d305cee1acb084760 (diff) | |
download | sink-e1430017eb60976610f4963cd770116a4a486c2e.tar.gz sink-e1430017eb60976610f4963cd770116a4a486c2e.zip |
New properties
Diffstat (limited to 'common/domain/contact.fbs')
-rw-r--r-- | common/domain/contact.fbs | 9 |
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 @@ | |||
1 | namespace Sink.ApplicationDomain.Buffer; | 1 | namespace Sink.ApplicationDomain.Buffer; |
2 | 2 | ||
3 | table ContactEmail { | ||
4 | type: int; | ||
5 | email: string; | ||
6 | } | ||
7 | |||
3 | table Contact { | 8 | table 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 | ||