mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
16 lines
316 B
Protocol Buffer
16 lines
316 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ProfilePicture.proto";
|
|
|
|
// Name: MEGDKCPJCHP
|
|
message ActivityRecvGiftData {
|
|
ProfilePicture profile_picture = 4;
|
|
uint32 uid = 10;
|
|
string remark_name = 1;
|
|
map<uint32, uint32> gift_num_map = 2;
|
|
string nickname = 14;
|
|
}
|
|
|