9 lines
171 B
Go
Raw Normal View History

2025-02-21 19:43:34 +04:00
package models
type User struct {
Id uint `json:"id"`
Name string `json:"name"`
Email string `json:"email" gorm:"unique"`
Password []byte `json:"-"`
}