GC-Proto/proto/ActivityRecvGiftData.proto

16 lines
318 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "ProfilePicture.proto";
2023-02-28 04:12:44 +03:00
// Name: CFHNBMHCAAN
2023-02-18 04:48:44 +03:00
message ActivityRecvGiftData {
2023-02-28 04:12:44 +03:00
string nickname = 7;
string remark_name = 12;
uint32 uid = 14;
map<uint32, uint32> gift_num_map = 10;
ProfilePicture profile_picture = 13;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00