Files
honoka-chan/internal/schema/reward/list.go
T
2026-06-05 06:53:48 +08:00

15 lines
341 B
Go

package rewardschema
type ListData struct {
ItemCount int `json:"item_count"`
Limit int `json:"limit"`
Order int `json:"order"`
Items []any `json:"items"`
}
type ListResp struct {
ResponseData ListData `json:"response_data"`
ReleaseInfo []any `json:"release_info"`
StatusCode int `json:"status_code"`
}