mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-12 12:45:48 -05:00
8 lines
219 B
Protocol Buffer
Vendored
8 lines
219 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Requests.Messages;
|
|
|
|
message SetFavoritePokemonMessage {
|
|
int64 pokemon_id = 1; // Do not change https://github.com/AeonLucid/POGOProtos/pull/126
|
|
bool is_favorite = 2;
|
|
}
|