CHG: removed the sourcetype out of the basic message

This commit is contained in:
Henry Winkel
2023-08-11 10:59:48 +02:00
parent 1c35c0cf67
commit 8eaf6e529c
21 changed files with 122 additions and 388 deletions

View File

@@ -9,13 +9,9 @@ package messages.header;
message Message {
uint32 topic = 1;
uint32 msgType = 2;
uint32 sourceType = 3;
string senderUUID = 4;
optional uint32 sourceID = 5;
optional uint32 parentID = 6;
string senderUUID = 3;
google.protobuf.Any payload = 7;
google.protobuf.Any payload = 5;
}