diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-03-09 16:14:02 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-03-09 16:14:02 +0100 |
commit | 57a88e6c1514b85d25b066059defcd62d2ccd8d6 (patch) | |
tree | ad41c8e9e4e6b59329e84c2151f24ba5a22eca64 /common/domain/addressbook.fbs | |
parent | 45aaa4a4b2a0718d6e23dd5ac8a5c594d774e949 (diff) | |
download | sink-57a88e6c1514b85d25b066059defcd62d2ccd8d6.tar.gz sink-57a88e6c1514b85d25b066059defcd62d2ccd8d6.zip |
Addressbook support
Diffstat (limited to 'common/domain/addressbook.fbs')
-rw-r--r-- | common/domain/addressbook.fbs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/common/domain/addressbook.fbs b/common/domain/addressbook.fbs new file mode 100644 index 0000000..c2bda2b --- /dev/null +++ b/common/domain/addressbook.fbs | |||
@@ -0,0 +1,9 @@ | |||
1 | namespace Sink.ApplicationDomain.Buffer; | ||
2 | |||
3 | table Addressbook { | ||
4 | name:string; | ||
5 | parent:string; | ||
6 | } | ||
7 | |||
8 | root_type Addressbook; | ||
9 | file_identifier "AKFB"; | ||