GC-Proto/proto/ShopConcertProduct.proto

17 lines
316 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-04-11 11:18:47 +03:00
// Name: JAJEHOIAKLD
2022-11-06 15:30:21 +03:00
message ShopConcertProduct {
2023-03-11 18:42:44 +03:00
string product_id = 1;
string price_tier = 2;
uint32 obtain_count = 3;
uint32 obtain_limit = 4;
uint32 begin_time = 5;
uint32 end_time = 6;
uint32 buy_times = 7;
2022-11-06 15:30:21 +03:00
}
2023-03-11 18:42:44 +03:00