mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-24 06:47:00 -05:00
10 lines
299 B
Protocol Buffer
Vendored
10 lines
299 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Data.Gym;
|
|
|
|
import "POGOProtos/Data/PokemonData.proto";
|
|
import "POGOProtos/Data/Player/PlayerPublicProfile.proto";
|
|
|
|
message GymMembership {
|
|
.POGOProtos.Data.PokemonData pokemon_data = 1;
|
|
.POGOProtos.Data.Player.PlayerPublicProfile trainer_public_profile = 2;
|
|
} |