Taobin-Recipe-Manager/server/models/user.go

8 lines
131 B
Go
Raw Normal View History

2023-09-21 14:21:14 +07:00
package models
type User struct {
Name string `json:"name"`
Email string `json:"email"`
Picture string `json:"picture"`
}