add a new message to avoid single messages per inbound
This commit is contained in:
14
Communication.proto
Normal file
14
Communication.proto
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
syntax = "proto3";
|
||||||
|
package aman;
|
||||||
|
|
||||||
|
import "AircraftReport.proto";
|
||||||
|
import "AircraftSchedule.proto";
|
||||||
|
|
||||||
|
message AircraftUpdate {
|
||||||
|
repeated AircraftReport reports = 1; // Contains all updated aircrafts
|
||||||
|
}
|
||||||
|
|
||||||
|
message AircraftSequence {
|
||||||
|
string airport = 1; // Contains the airport ICAO for an easy filter
|
||||||
|
repeated AircraftSchedule sequence = 2; // Contains the sequence for the airport
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user