mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-03 08:44:36 +03:00
15 lines
256 B
Protocol Buffer
15 lines
256 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "BargainSnapshot.proto";
|
|
|
|
// CmdId: 498
|
|
// Name: CMPGGEKCDPC
|
|
message GetBargainDataRsp {
|
|
int32 retcode = 11;
|
|
uint32 bargain_id = 6;
|
|
BargainSnapshot snapshot = 2;
|
|
}
|
|
|