GC-Proto/proto/GetAllMailResultNotify.proto

16 lines
350 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-08-28 12:09:22 +03:00
// Version: 5.0
// CmdId: 20649
2024-05-22 14:51:09 +03:00
import "MailData.proto";
2024-05-22 14:51:09 +03:00
2024-08-28 12:09:22 +03:00
message GetAllMailResultNotify {
uint32 total_page_count = 4;
uint32 page_index = 6;
string transaction = 8;
bool is_collected = 10;
int32 retcode = 11;
repeated MailData mail_list = 13;
}