mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-24 23:07:41 -05:00
11 lines
236 B
Protocol Buffer
11 lines
236 B
Protocol Buffer
syntax = "proto3";
|
|
package POGOProtos.Data.Player;
|
|
|
|
import "POGOProtos/Enums/BadgeType.proto";
|
|
|
|
message EquippedBadge {
|
|
.POGOProtos.Enums.BadgeType badge_type = 1;
|
|
int32 level = 2;
|
|
int64 next_equip_change_allowed_timestamp_ms = 3;
|
|
}
|