syntax = "proto3";
option optimize_for = LITE_RUNTIME;
import "cotevent.proto";
import "takcontrol.proto";
package atakmap.commoncommo.protobuf.v1;
// Top level message sent for TAK Messaging Protocol Version 1.
message TakMessage {
// Optional - if omitted, continue using last reported control
// information
TakControl takControl = 1;
// Optional - if omitted, no event data in this message
CotEvent cotEvent = 2;
}