18 lines
320 B
Protocol Buffer
Executable file
18 lines
320 B
Protocol Buffer
Executable file
syntax = "proto3";
|
|
|
|
package rv.analytics;
|
|
|
|
option cc_enable_arenas = true;
|
|
option csharp_namespace = "Pro.SerializationInterop.RVProtoData.Analytics";
|
|
option swift_prefix = "Analytics_";
|
|
|
|
message API {
|
|
message MessageReceived {
|
|
}
|
|
|
|
oneof APIType {
|
|
.rv.analytics.API.MessageReceived message_received = 1;
|
|
}
|
|
}
|
|
|