12 lines
200 B
Go
12 lines
200 B
Go
package activity_dto
|
|
|
|
type WeekStarGrantGiftDTO struct {
|
|
GrantType string
|
|
GrantList map[int][]WeekStarGrantGiftRankGiftDto
|
|
}
|
|
|
|
type WeekStarGrantGiftRankGiftDto struct {
|
|
GiftID string
|
|
Count int
|
|
}
|