summaryrefslogtreecommitdiffstats
path: root/common/commands
diff options
context:
space:
mode:
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}