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

15 lines
340 B
Go

package ghome
type GuestStatusData struct {
Disablead int `json:"disablead"`
Loginswitch int `json:"loginswitch"`
Message string `json:"message"`
Result int `json:"result"`
}
type GuestStatusResp struct {
Code int `json:"code"`
Msg string `json:"msg"`
Data GuestStatusData `json:"data"`
}