mirror of
https://git.xeondev.com/LR/S.git
synced 2026-02-04 06:55:06 +01:00
18 lines
393 B
Protocol Buffer
18 lines
393 B
Protocol Buffer
syntax = "proto3";
|
|
package proto;
|
|
|
|
option go_package = "/csproto";
|
|
|
|
message SC_MONTHLYCARD_SYNC {
|
|
int32 valid_end_ts = 1;
|
|
int32 last_reward_ts = 2;
|
|
repeated SCD_MONTHLYCARD_REWARD_RECORD last_reward_records = 3;
|
|
}
|
|
message SCD_MONTHLYCARD_REWARD_RECORD {
|
|
int32 reward_ts = 1;
|
|
int32 confirm_ts = 2;
|
|
}
|
|
message CS_MONTHLYCARD_CONFIRM_REWARD {
|
|
int32 target_reward_ts = 1;
|
|
}
|