Files
2025-11-17 13:39:05 +08:00

9 lines
284 B
Go

package model
type User struct {
ID string `json:"id"`
Username string `json:"username"`
Email string `json:"email"`
Password string `json:"password,omitempty"` // omitempty 表示在序列化为 JSON 时如果为空则忽略
Avatar string `json:"avatar,omitempty"`
}