14 lines
280 B
Go
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社交动态
|
|
}
|