20 lines
337 B
Go
20 lines
337 B
Go
package activity_dto
|
|
|
|
type ChatRoomLuckPrize struct {
|
|
Name string
|
|
Icon string
|
|
Price int64
|
|
PriceType string
|
|
MaxValue int64
|
|
PrizeList []ChatRoomLuckPrizeItem
|
|
}
|
|
|
|
type ChatRoomLuckPrizeItem struct {
|
|
Name string
|
|
Icon string
|
|
Value int64
|
|
PriceType string
|
|
Probability string
|
|
Type string
|
|
}
|