blob: 517111cacebb0f5552382d41bb3e91f20c84f73a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
namespace Sink.Commands;
table Notification {
type: int = 0; //See notification.h
identifier: string; //An identifier that links back to the something related to the notification (e.g. a command id)
message: string;
code: int = 0; //See notification.h
entities: [string]; //A list of entities this applies to
}
root_type Notification;
|