Files
honoka-chan/model/tos.go
T
YumeMichi 69514cd052 Code cleanup
Signed-off-by: Yuan Si <do4suki@gmail.com>
2023-04-14 16:05:18 +08:00

17 lines
414 B
Go

package model
// TosResp ...
type TosResp struct {
ResponseData TosRes `json:"response_data"`
ReleaseInfo []interface{} `json:"release_info"`
StatusCode int `json:"status_code"`
}
// TosResp ...
type TosRes struct {
TosID int `json:"tos_id"`
TosType int `json:"tos_type"`
IsAgreed bool `json:"is_agreed"`
ServerTimestamp int64 `json:"server_timestamp"`
}