GC-Proto/proto/MailData.proto

24 lines
600 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
2022-11-06 15:30:21 +03:00
2023-02-28 23:24:57 +03:00
import "MailTextContent.proto";
import "MailCollectState.proto";
2022-11-06 15:30:21 +03:00
import "MailItem.proto";
2023-02-28 06:08:38 +03:00
// Name: HGOBDHKMDHO
2022-11-06 15:30:21 +03:00
message MailData {
2023-03-07 05:02:26 +03:00
uint32 mailId = 1; // FMBALDHPHEL
MailTextContent mail_text_content = 4;
repeated MailItem item_list = 7;
uint32 send_time = 8; // ONHBGIHJJHJ
uint32 expire_time = 9;
uint32 importance = 10; // GJNJJOANHLH
bool is_read = 11;
bool is_attachment_got = 12;
uint32 config_id = 13;
repeated string argument_list = 14;
MailCollectState collect_state = 15;
2022-11-06 15:30:21 +03:00
}
2023-02-28 06:08:38 +03:00