GC-Proto/proto/GetAllMailResultNotify.proto

18 lines
339 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
// CmdId: 20380
// Version: 4.7.0
// Obfs: ?
2023-04-03 05:59:24 +03:00
message GetAllMailResultNotify {
int32 retcode = 12;
repeated MailData mail_list = 2;
2024-06-02 06:52:03 +03:00
string transaction = 7;
uint32 packet_num = 6;
bool is_collected = 3;
uint32 packet_be_sent_num = 14;
2023-04-03 05:59:24 +03:00
}