diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2015-11-09 16:04:46 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2015-11-09 16:04:46 +0100 |
commit | 9f6e0fbfd8cf23104eba5a78f89a69fab1a417f5 (patch) | |
tree | a48d5e63f1c5d986d871c978c77d6c909536889d /common/domain/folder.fbs | |
parent | 790991aa1007d3271d80bc7e77f5b4f86c9bcef0 (diff) | |
download | sink-9f6e0fbfd8cf23104eba5a78f89a69fab1a417f5.tar.gz sink-9f6e0fbfd8cf23104eba5a78f89a69fab1a417f5.zip |
Added a folder type
Diffstat (limited to 'common/domain/folder.fbs')
-rw-r--r-- | common/domain/folder.fbs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/common/domain/folder.fbs b/common/domain/folder.fbs new file mode 100644 index 0000000..3476d58 --- /dev/null +++ b/common/domain/folder.fbs | |||
@@ -0,0 +1,9 @@ | |||
1 | namespace Akonadi2.ApplicationDomain.Buffer; | ||
2 | |||
3 | table Folder { | ||
4 | name:string; | ||
5 | parent:string; | ||
6 | } | ||
7 | |||
8 | root_type Folder; | ||
9 | file_identifier "AKFB"; | ||