Files
honoka-chan/internal/schema/api/exchange/owningpoint.go
T
YumeMichi c77241a883 Overhaul [1/n]
Signed-off-by: Sean Du <do4suki@gmail.com>
2026-01-29 02:42:28 +08:00

18 lines
447 B
Go

package exchange
type ExchangePointList struct {
Rarity int `json:"rarity"`
ExchangePoint int `json:"exchange_point"`
}
type OwningPointData struct {
ExchangePointList []ExchangePointList `json:"exchange_point_list"`
}
type OwningPointResp struct {
Result OwningPointData `json:"result"`
Status int `json:"status"`
CommandNum bool `json:"commandNum"`
TimeStamp int64 `json:"timeStamp"`
}