Files
2026-02-14 11:38:59 +08:00

14 lines
280 B
Go

package request
import common "sundynix-go/model/commom/request"
type UpdateProfile struct {
Nickname string `json:"nickname"`
AvatarId string `json:"avatarId"`
}
type StarsPageReq struct {
common.PageInfo
Class int `json:"class"` //分类 0 全部 1百科 2社交动态
}