mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-29 17:19:28 +03:00
18 lines
379 B
Protocol Buffer
18 lines
379 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
import "ExhibitionDisplayInfo.proto";
|
||
|
import "ProfilePicture.proto";
|
||
|
|
||
|
// Name: KDECJEOGKOO
|
||
|
message KDECJEOGKOO {
|
||
|
uint32 uid = 5;
|
||
|
uint32 head_image = 14;
|
||
|
repeated ExhibitionDisplayInfo card_list = 10;
|
||
|
ProfilePicture profile_picture = 1;
|
||
|
string nickname = 6;
|
||
|
string online_id = 12;
|
||
|
}
|
||
|
|