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

22 lines
470 B
Go

package ghome
type AgreementData struct {
}
type AgreementResp struct {
ReturnCode int `json:"return_code"`
ErrorType int `json:"error_type"`
ReturnMessage string `json:"return_message"`
Data AgreementData `json:"data"`
}
type AppReportData struct {
NeedReport int `json:"needReport"`
}
type AppReportResp struct {
Code int `json:"code"`
Msg string `json:"msg"`
Data AppReportData `json:"data"`
}