GC-Proto/proto/GetAllMailResultNotify.proto

18 lines
349 B
Protocol Buffer
Raw Normal View History

2023-04-03 05:59:24 +03:00
syntax = "proto3";
2024-05-29 15:56:24 +03:00
2023-04-03 05:59:24 +03:00
option java_package = "emu.grasscutter.net.proto";
2024-05-22 14:51:09 +03:00
import "MailData.proto";
2024-05-22 14:51:09 +03:00
2024-05-29 15:56:24 +03:00
// CmdId: 29484
// Version: 4.6.0
// Obfs: MPLFKHHMJKP
2023-04-03 05:59:24 +03:00
message GetAllMailResultNotify {
2024-06-02 06:52:03 +03:00
int32 retcode = 1;
repeated MailData mail_list = 3;
string transaction = 7;
uint32 packet_num = 9;
bool is_collected = 12;
uint32 packet_be_sent_num = 15;
2023-04-03 05:59:24 +03:00
}