mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
20 lines
394 B
Protocol Buffer
20 lines
394 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ProfilePicture.proto";
|
|
|
|
// Name: PAEEGEIHHOJ
|
|
message BlessingRecvPicRecord {
|
|
uint32 index = 11;
|
|
string remark_name = 8;
|
|
uint32 pic_id = 9;
|
|
uint32 uid = 7;
|
|
uint32 avatar_id = 5;
|
|
bool is_recv = 2;
|
|
string signature = 15;
|
|
ProfilePicture profile_picture = 6;
|
|
string nickname = 3;
|
|
}
|
|
|