diff options
author | Sandro Knauß <sknauss@kde.org> | 2017-01-11 13:06:55 +0100 |
---|---|---|
committer | Sandro Knauß <sknauss@kde.org> | 2017-01-30 10:58:20 +0100 |
commit | bb624c5ec2ab2e13dedcba67fd60e3d2f03216d7 (patch) | |
tree | ee27923e8bf1fa51a75599beaff7e005368180e0 /common/domain/contact.fbs | |
parent | 17d8b00ae32e2b1522c5dce6719566e4fbe3357e (diff) | |
download | sink-bb624c5ec2ab2e13dedcba67fd60e3d2f03216d7.tar.gz sink-bb624c5ec2ab2e13dedcba67fd60e3d2f03216d7.zip |
Add Contact as new domain type
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"; | ||