mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-26 08:30:22 +03:00
14 lines
243 B
Protocol Buffer
14 lines
243 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "MailData.proto";
|
|
|
|
// Name: KOAPCJOBLKO
|
|
// CmdId: 1475
|
|
message MailChangeNotify {
|
|
repeated MailData mail_list = 8;
|
|
repeated uint32 del_mail_id_list = 2;
|
|
}
|
|
|