blob: c82fad3cfc5060d3c7a854c70a6b8e964365af2e (
plain)
1
2
3
4
5
6
7
8
9
10
|
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. an entity id or a command id)
message: string;
code: int = 0; //See notification.h
}
root_type Notification;
|