2023-04-03 05:59:24 +03:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
|
|
import "MailData.proto";
|
|
|
|
|
2023-04-11 11:18:47 +03:00
|
|
|
// CmdId: 1499
|
|
|
|
// Name: GOLFMOPNENJ
|
2023-04-03 05:59:24 +03:00
|
|
|
message GetAllMailResultNotify {
|
2023-04-11 11:18:47 +03:00
|
|
|
uint32 packet_be_sent_num = 7; // CDLABECFBPJ
|
|
|
|
repeated MailData mail_list = 5;
|
|
|
|
bool is_collected = 12;
|
|
|
|
uint32 packet_num = 8; //GAAHHONLFPA
|
|
|
|
int32 retcode = 2;
|
|
|
|
string transaction = 10;
|
2023-04-03 05:59:24 +03:00
|
|
|
}
|
|
|
|
|