POGOserver/POGOProtos/Networking/Requests/Messages/DownloadRemoteConfigVersionMessage.proto
Felix bc853908e1 Update
- Adding protos
- Adding dumps
- Simple http server
- Various packets
- Added readme
2016-08-05 20:43:56 +02:00

13 lines
305 B
Protocol Buffer

syntax = "proto3";
package POGOProtos.Networking.Requests.Messages;
import "POGOProtos/Enums/Platform.proto";
message DownloadRemoteConfigVersionMessage {
.POGOProtos.Enums.Platform platform = 1;
string device_manufacturer = 2;
string device_model = 3;
string locale = 4;
uint32 app_version = 5;
}