mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-12 17:00:24 +03:00
18 lines
357 B
Protocol Buffer
18 lines
357 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ReportReasonType.proto";
|
|
import "ReportSubtype.proto";
|
|
|
|
// CmdId: 22232
|
|
message PlayerReportReq {
|
|
uint32 target_uid = 2;
|
|
string target_home_module_name = 3;
|
|
ReportReasonType reason = 4;
|
|
string content = 8;
|
|
uint32 target_home_module_id = 9;
|
|
ReportSubtype subtype = 14;
|
|
}
|
|
|