summaryrefslogtreecommitdiffstats
path: root/common/commands
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2016-01-18 18:36:41 +0100
committerChristian Mollekopf <chrigi_1@fastmail.fm>2016-01-18 18:36:41 +0100
commit67e83aadde8db2bb1293cee61e8c6306a4ffcca0 (patch)
tree10531201cb5dca7617e17a4e4393bda20694c4ca /common/commands
parenta857d9b36f80adf045cd195653cb2f8b91452981 (diff)
downloadsink-67e83aadde8db2bb1293cee61e8c6306a4ffcca0.tar.gz
sink-67e83aadde8db2bb1293cee61e8c6306a4ffcca0.zip
Working resource inspection
Diffstat (limited to 'common/commands')
-rw-r--r--common/commands/notification.fbs1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/commands/notification.fbs b/common/commands/notification.fbs
index eb00986..5c810cf 100644
--- a/common/commands/notification.fbs
+++ b/common/commands/notification.fbs
@@ -5,6 +5,7 @@ enum NotificationCode : byte { Success = 0, Failure = 1, UserCode }
5 5
6table Notification { 6table Notification {
7 type: NotificationType = Status; 7 type: NotificationType = Status;
8 identifier: string; //An identifier that links back to the something related to the notification (e.g. an entity id or a command id)
8 message: string; 9 message: string;
9 code: int = 0; //Of type NotificationCode 10 code: int = 0; //Of type NotificationCode
10} 11}