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

15 lines
367 B
Go

package model
// AnnounceResp ...
type AnnounceResp struct {
ResponseData AnnounceRes `json:"response_data"`
ReleaseInfo []interface{} `json:"release_info"`
StatusCode int `json:"status_code"`
}
// AnnounceRes ...
type AnnounceRes struct {
HasUnreadAnnounce bool `json:"has_unread_announce"`
ServerTimestamp int64 `json:"server_timestamp"`
}