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.fbs11
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 @@
1namespace Sink.ApplicationDomain.Buffer;
2
3table Contact {
4 uid:string;
5 fn:string;
6 emails: [string];
7 vcard: string;
8}
9
10root_type Contact;
11file_identifier "AKFB";