GC-Proto/proto/ShopMcoinProduct.proto

17 lines
315 B
Protocol Buffer
Raw Normal View History

2023-04-03 09:51:55 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2023-04-11 06:14:48 +03:00
// Name: JFMBGGFOPJO
2023-04-03 09:51:55 +03:00
message ShopMcoinProduct {
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;
}