summaryrefslogtreecommitdiffstats
path: root/common/commands
diff options
context:
space:
mode:
Diffstat (limited to 'common/commands')
-rw-r--r--common/commands/notification.fbs2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/commands/notification.fbs b/common/commands/notification.fbs
index 517111c..7ced666 100644
--- a/common/commands/notification.fbs
+++ b/common/commands/notification.fbs
@@ -5,6 +5,8 @@ table Notification {
5 identifier: string; //An identifier that links back to the something related to the notification (e.g. a command id) 5 identifier: string; //An identifier that links back to the something related to the notification (e.g. a command id)
6 message: string; 6 message: string;
7 code: int = 0; //See notification.h 7 code: int = 0; //See notification.h
8 progress: int = 0; //See notification.h
9 total: int = 0; //See notification.h
8 entities: [string]; //A list of entities this applies to 10 entities: [string]; //A list of entities this applies to
9} 11}
10 12