GC-Proto/proto/ShopMcoinProduct.proto

17 lines
315 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2022-11-06 15:30:21 +03:00
option java_package = "emu.grasscutter.net.proto";
2023-03-11 18:42:44 +03:00
// Name: LIJKGGFCHOB
2022-11-06 15:30:21 +03:00
message ShopMcoinProduct {
2023-03-11 18:42:44 +03:00
string product_id = 1;
string price_tier = 2;
uint32 mcoin_base = 3;
uint32 mcoin_non_first = 4;
uint32 mcoin_first = 5;
uint32 bought_num = 6;
bool is_audit = 7;
2022-11-06 15:30:21 +03:00
}
2023-03-11 18:42:44 +03:00