Files
honoka-chan/internal/schema/api/unit/supporterall.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
416 B
Go

package unit
type SupporterList struct {
UnitID int `json:"unit_id"`
Amount int `json:"amount"`
}
type SupporterAllData struct {
UnitSupportList []SupporterList `json:"unit_support_list"`
}
type SupporterAllResp struct {
Result SupporterAllData `json:"result"`
Status int `json:"status"`
CommandNum bool `json:"commandNum"`
TimeStamp int64 `json:"timeStamp"`
}