mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-03-21 17:34:27 -05:00
13 lines
305 B
Protocol Buffer
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;
|
|
}
|