mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-19 16:07:22 -05:00
16 lines
332 B
Protocol Buffer
Vendored
16 lines
332 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Responses;
|
|
|
|
import "POGOProtos/Data/PlayerData.proto";
|
|
|
|
message SetContactSettingsResponse {
|
|
.POGOProtos.Networking.Responses.SetContactSettingsResponse.Status status = 1;
|
|
.POGOProtos.Data.PlayerData player_data = 2;
|
|
|
|
enum Status {
|
|
UNSET = 0;
|
|
SUCCESS = 1;
|
|
FAILURE = 2;
|
|
}
|
|
}
|