11 lines
202 B
Go
Raw Normal View History

2024-09-29 21:12:57 +08:00
package dto
type UserVO struct {
Sn string `json:"sn"`
Token string `json:"token"`
Account *string `json:"Account"`
Nickname *string `json:"nickname"`
Avatar *string `json:"avatar"`
}