mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-26 07:39:25 +03:00
14 lines
276 B
Protocol Buffer
14 lines
276 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
// Version: 5.0
|
|
// CmdId: 22156
|
|
|
|
import "MailData.proto";
|
|
|
|
message GetAllMailRsp {
|
|
bool is_collected = 4;
|
|
int32 retcode = 5;
|
|
bool is_truncated = 9;
|
|
repeated MailData mail_list = 11;
|
|
}
|