GC-Proto/proto/ShopMcoinProduct.proto

12 lines
261 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
message ShopMcoinProduct {
2023-01-28 17:00:48 +03:00
string productId = 1;
string priceTier = 2;
uint32 mcoinBase = 3;
uint32 mcoinNonFirst = 4;
uint32 mcoinFirst = 5;
uint32 boughtNum = 6;
bool isAudit = 7;
2022-11-06 15:30:21 +03:00
}