mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-03-21 17:34:27 -05:00
11 lines
246 B
Protocol Buffer
11 lines
246 B
Protocol Buffer
syntax = "proto3";
|
|
package POGOProtos.Map.Fort;
|
|
|
|
import "POGOProtos/Inventory/Item/ItemId.proto";
|
|
|
|
message FortModifier {
|
|
.POGOProtos.Inventory.Item.ItemId item_id = 1;
|
|
int64 expiration_timestamp_ms = 2;
|
|
string deployer_player_codename = 3;
|
|
}
|