GC-Proto/proto/GetAllMailResultNotify.proto

14 lines
311 B
Protocol Buffer
Raw Normal View History

2023-04-03 05:59:24 +03:00
syntax = "proto3";
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
2023-04-03 05:59:24 +03:00
message GetAllMailResultNotify {
2024-05-22 14:51:09 +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
}