mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-30 01:36:52 -05:00
11 lines
238 B
Protocol Buffer
Vendored
11 lines
238 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Responses;
|
|
|
|
import "POGOProtos/Settings/GlobalSettings.proto";
|
|
|
|
message DownloadSettingsResponse {
|
|
string error = 1;
|
|
string hash = 2;
|
|
.POGOProtos.Settings.GlobalSettings settings = 3;
|
|
}
|