add a new message to avoid single messages per inbound

这个提交包含在:
Sven Czarnian
2021-11-12 19:52:10 +01:00
父节点 51dfbf0577
当前提交 33ef849dff

14
Communication.proto 普通文件
查看文件

@@ -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
}