GC-Proto/proto/ShopConcertProduct.proto

16 lines
267 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 17:00:48 +03:00
2022-11-06 15:30:21 +03:00
option java_package = "emu.grasscutter.net.proto";
message ShopConcertProduct {
2023-01-28 17:00:48 +03:00
string productId = 1;
string priceTier = 2;
uint32 obtainCount = 3;
uint32 obtainLimit = 4;
uint32 beginTime = 5;
uint32 endTime = 6;
uint32 buyTimes = 7;
2022-11-06 15:30:21 +03:00
}