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

15 lines
352 B
Go

package rewardapischema
type HistoryData struct {
ItemCount int `json:"item_count"`
Limit int `json:"limit"`
History []any `json:"history"`
}
type HistoryResp struct {
Result HistoryData `json:"result"`
Status int `json:"status"`
CommandNum bool `json:"commandNum"`
TimeStamp int64 `json:"timeStamp"`
}