syntax = "proto3";
package POGOProtos.Data.Gift;

message GiftBox {
	uint64 giftbox_id = 1;
	string sender_id = 2;
	string receiver_id = 3;
	string fort_id = 4;
	double fort_lat = 5;
	double fort_lng = 6;
	int64 creation_timestamp = 7;
	int64 sent_timestamp = 8;
	int64 sent_bucket = 9;
}
