diff options
Diffstat (limited to 'common/domain/contact.fbs')
-rw-r--r-- | common/domain/contact.fbs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/common/domain/contact.fbs b/common/domain/contact.fbs new file mode 100644 index 0000000..34fb1d6 --- /dev/null +++ b/common/domain/contact.fbs | |||
@@ -0,0 +1,11 @@ | |||
1 | namespace Sink.ApplicationDomain.Buffer; | ||
2 | |||
3 | table Contact { | ||
4 | uid:string; | ||
5 | fn:string; | ||
6 | emails: [string]; | ||
7 | vcard: string; | ||
8 | } | ||
9 | |||
10 | root_type Contact; | ||
11 | file_identifier "AKFB"; | ||