summaryrefslogtreecommitdiffstats
path: root/common/commands
diff options
context:
space:
mode:
Diffstat (limited to 'common/commands')
-rw-r--r--common/commands/notification.fbs9
1 files changed, 9 insertions, 0 deletions
diff --git a/common/commands/notification.fbs b/common/commands/notification.fbs
new file mode 100644
index 0000000..6684472
--- /dev/null
+++ b/common/commands/notification.fbs
@@ -0,0 +1,9 @@
1namespace Akonadi2;
2
3enum NotificationType : byte { Shutdown = 1, Status, Warning, Progress }
4
5table Notification {
6 type: NotificationType = Status;
7}
8
9root_type Notification;