mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 07:59:24 +03:00
20 lines
344 B
Protocol Buffer
20 lines
344 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
|
|
import "ProfilePicture.proto";
|
|
|
|
message BlessingRecvPicRecord {
|
|
ProfilePicture profilePicture = 11;
|
|
string signature = 10;
|
|
uint32 avatarId = 8;
|
|
uint32 uid = 5;
|
|
uint32 index = 1;
|
|
string remarkName = 14;
|
|
uint32 picId = 2;
|
|
string nickname = 12;
|
|
bool isRecv = 7;
|
|
}
|