syntax = "proto3";
package POGOProtos.Inventory;

import "POGOProtos/Inventory/Item/ItemId.proto";
import "POGOProtos/Inventory/InventoryUpgradeType.proto";

message InventoryUpgrade {
	.POGOProtos.Inventory.Item.ItemId item_id = 1;
	.POGOProtos.Inventory.InventoryUpgradeType upgrade_type = 2;
	int32 additional_storage = 3;
}
