11 lines
198 B
Protocol Buffer
11 lines
198 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "MailData.proto";
|
|
|
|
message MailChangeNotify {
|
|
repeated MailData mailList = 1;
|
|
repeated uint32 delMailIdList = 2;
|
|
}
|