act_time_limited_card.go 537 B

123456789101112131415161718
  1. package model
  2. type TimeLimitedCardRepoConf struct {
  3. ThemeId int64 `json:"themeId"`
  4. Progress map[int64]TimeLimitedCardProgress `json:"progress"`
  5. }
  6. type TimeLimitedCardProgress struct {
  7. Stage int64 `json:"stage"`
  8. Target int64 `json:"target"`
  9. Rewards []ActPrize `json:"rewards"`
  10. }
  11. type TimeLimitedCardShowConf struct {
  12. ThemeId int64 `json:"themeId"`
  13. Progress []TimeLimitedCardProgress `json:"progress"`
  14. CardGroups []Option `json:"cardGroups"`
  15. }