mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
17 lines
324 B
Protocol Buffer
17 lines
324 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ItemParam.proto";
|
|
|
|
// CmdId: 4117
|
|
// Name: IJCIIACAMHO
|
|
message OrderFinishNotify {
|
|
uint32 card_product_remain_days = 2;
|
|
uint32 order_id = 5;
|
|
repeated ItemParam item_list = 1;
|
|
uint32 add_mcoin = 10;
|
|
string product_id = 9;
|
|
}
|
|
|